Search found 28 matches: nrecselcolor

Return to advanced search

Re: Ayuda con xBrowse

Hola Artu01 !! PD: puedes decirme como le quito el color negro que muestro con la flecha roja? Hola, intenta con: oLbx:nRecSelColor := nRGB( 240, 240, 240 ) saludos francisco, ciertamente el xbrowse.prg indica que nRecSelColor es el que asigna el color a esa barra, pero no me ha funcionado. ...
by JoseAlvarez
Thu Mar 25, 2021 9:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con xBrowse
Replies: 15
Views: 1811

Re: Ayuda con xBrowse

JoseAlvarez wrote:Hola Artu01 !!
PD: puedes decirme como le quito el color negro que muestro con la flecha roja?

Hola, intenta con:
oLbx:nRecSelColor := nRGB( 240, 240, 240 )
by FranciscoA
Thu Mar 25, 2021 6:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con xBrowse
Replies: 15
Views: 1811

Re: Como me refiero al total de una columna

... } :bClrStd := { || IF( oBry:KeyNo % oApp:nRowsInt == 0 ,{ CLR_BLACK, oApp:nRowParClr },{ CLR_BLACK, oApp:nRowNonClr }) } :nRecSelColor := oApp:nRowParClr :lDisplayZeros := (.F.) WITH OBJECT :Arriendo :cOrder := "A" :bFooter := { || Len( oBry:aSelected ) } END ...
by Armando
Fri Nov 13, 2020 2:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como me refiero al total de una columna (SOLUCIONADO)
Replies: 8
Views: 918

Re: XBROWSE: Color of the record selector triangle

... //Advised to specify bitmap with size 16x16 or less . oBrw1:bClrSelFocus := { || { 0, 14540287 } } oBrw1:bClrSel := { || { 0, 15132365 } } oBrw1:nRecSelColor := 15512898 oBrw1:nRecSelWidth := 50 oBrw1:SetRecSelBmp( c_path1 + "Arrow.bmp" ) // red arrow as record-selector http://www.pflegeplus.com/IMAGES/Selector1.jpg ...
by ukoenig
Wed Jul 29, 2020 11:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE: Color of the record selector triangle
Replies: 2
Views: 388

Re: New FTDN December/Diciembre 2018 (FWH 18.12)

... método SetStyle (bClrGrad) ahora acepta bClrGrad como parámetro. Esto permite la implementación de un esquema de color personalizado. bClrHeader y nRecSelColor se derivan de bClrGrad. * BtnBmp: - Se ha corregido problemas de repintado cuando el botón se redimensiona en tiempo de ejecución (Error ...
by Antonio Linares
Mon Dec 31, 2018 2:44 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2018 (FWH 18.12)
Replies: 1
Views: 1653

New FTDN December/Diciembre 2018 (FWH 18.12)

... 2018 ) - Method SetStyle( bClrGrad ) now accepts bClrGrad as parameter. This allows implementation of custom color scheme. bClrHeader and nRecSelColor are derived from the bClrGrad. * BtnBmp: - Fixed repainting issues when button is resized at runtime (bug introduced in fwh1804). http://forums.fivetechsupport.com/viewtopic.php?f=3&t=36510 ...
by Antonio Linares
Sun Dec 30, 2018 7:03 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2018 (FWH 18.12)
Replies: 1
Views: 1653

Re: New FWH 16.04

Mr Uwe

In the present release we can change nRecSelColor during runtime.
But we did not have time to provide for text color. This will be done in next version.
by nageswaragunupudi
Sun May 15, 2016 8:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 16.04
Replies: 21
Views: 4501

Re: New FWH 16.04

... ? ( like the background-color, textcolor can be changed at runtime ) http://www.pflegeplus.com/IMAGES/Recsel1.jpg new DATA nRecSelColor,; // Background color for the record selector column, by default uses the backgrounf footer nRecTxtColor // Text color for the record selector ...
by ukoenig
Sat May 14, 2016 2:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 16.04
Replies: 21
Views: 4501

New FTDN April/Abril 2016 (FWH 16.04)

... this image is displayed on record selector in the place of the standard right arrow. Advised to specify bitmap with size 16x16 or less. nRecSelColor: Now it is possible to change RecSel Color during runtime. Eg: oBrw:nRecSelColor := nNewColor, oBrw:Refresh() Samples: fwh\samples\xhrecsel.prg ...
by Antonio Linares
Thu May 12, 2016 6:51 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2016 (FWH 16.04)
Replies: 8
Views: 7548

Re: XBrowse 16.04 : RecordSelector

Mr. Rao, just a idea. I don't know if it is possible somthing like oBrw1:nRecSelColor := { IIF( ( oBrw1:cAlias )->( Deleted() ), 255, aVal[103] ) } No need to show something in a extra column like a condition can be defined in oBrw:aCols[ 2 ]:bClrStd := {|| ...
by ukoenig
Thu Apr 28, 2016 12:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse 16.04 : RecordSelector
Replies: 8
Views: 2179

Re: XBrowse 16.04 : RecordSelector

... ), aVal[100] } ) } oBrw:bClrSel := ; oBrw:bClrSelFocus := { || { If( ( oBrw:cAlias )->( Deleted() ), 255, aVal[105] ), aVal[104] } } oBrw:nRecSelColor := aVal[107] // selector-col background oBrw:lHScroll := .T. oBrw:lVScroll := .T. oBrw:lFooter := .T. oBrw:nRowHeight := 25 oBrw:SetFont( ...
by ukoenig
Wed Apr 27, 2016 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse 16.04 : RecordSelector
Replies: 8
Views: 2179

Re: XBROWSE RecordSelector & Record Number

... and paint the first column with record selector color. oBrw:lRecordSelector := .f. oBrw:oCol( "SlNo" ):bClrStd := { || CLR_BLACK, oBrw:nRecSelColor } This gives a similar look and feel but still not as good as directl painting the number on the recordselector itself.
by nageswaragunupudi
Tue Oct 28, 2014 3:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE RecordSelector & Record Number
Replies: 4
Views: 954

Re: Problema con color en xBrowse

... If( ! lInvert, ; { { 0.30,12961221,16777215 },; { 0.30,16777215,12961221 } },; { { 0.10,9363707,16777215 },; { 0.10,16777215,9363707 } } ) } oBrw:nRecSelColor := 16777215 oBrw:bClrHeader := {|| { nRGB(0,0,0), 16777215, } } oBrw:bClrFooter := {|| { 0,16777215 } } Saludos.
by FranciscoA
Thu Sep 13, 2012 1:02 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con color en xBrowse
Replies: 2
Views: 568

xbrowse - nRecSelColor

Acho que:

oBrw:nRecSelColor := nRGB(211, 227, 247)

fica bem mais amigavel que a cor DEFAULT atualmente utilizada. :D
by MGA
Mon Aug 01, 2011 6:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse - nRecSelColor
Replies: 0
Views: 279

Get and xBrowse

... { || If(( oBrw:cAlias)->(OrdKeyNo()) % 2 == 0, ; { CLR_BLACK, RGB( 224, 236, 255 ) }, ; { CLR_BLACK, RGB( 189, 211, 253 ) } ) } oBrw:nRecSelColor := CLR_WHITE //RGB(238,232,170) //(135,206,235) //(127,255,212) // oBrw:lHScroll:= .f. // oBrw:bChange:= {||oGet[nI]:=(cAlias)->Nome,oDlg:Refresh() ...
by Romano
Tue Feb 01, 2011 6:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get and xBrowse
Replies: 0
Views: 537
Next

Return to advanced search