Search found 43 matches: nclrbackfocus

Searched query: nclrbackfocus

by jpcavagnaro
Thu Nov 09, 2023 8:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Título listbox
Replies: 5
Views: 638

Título listbox

... oemtoansi( "Descripci¢n" ) ; // ON dblCLICK (editrubro(olbx,.F.), olbx:Refresh());
ID 181 OF oDlg ;
font ofont1


oLbx:nClrBackHead:=nRgb(0,130,250)
oLbx:nClrForeHead:=nRgb(0,0,0)
oLbx:nClrBackFocus:=nRgb(0,100,255)
oLbx:nClrForeFocus:=nRgb(255,255,255)

porque no me cambia el color de los títulos
by surGom
Thu Oct 24, 2019 1:12 am
Forum: FiveWin para Harbour/xHarbour
Topic: conflicto con database
Replies: 4
Views: 1207

Re: conflicto con database

... Quite esta parte
olbm:bSeek := {|lRet| olbm:DbfSeek(.T.) }
oLbm:bkeydown := {|nkey,nflags| iif(nKey = VK_RETURN, nBut:setfocus(),.f.)}
olbm:nClrBackFocus := CLR_CYAN
olbm:nClrForeFocus := CLR_WHITE
REDEFINE BUTTON NBUT ID 102 ACTION (lacepto := .t.,odlg:end())


REDEFINE BUTTON ID 103 ACTION ...
by jbrita
Thu Aug 10, 2017 1:38 pm
Forum: FiveWin para Harbour/xHarbour
Topic: SET BLINK ON EN UNA CELDA XBROWSE
Replies: 4
Views: 1269

Re: SET BLINK ON EN UNA CELDA XBROWSE

... Blinking( oBrw )
ACTIVATE TIMER oCLITimer


Function Blinking( oBrw )
if ! oBrw:lFocused
oBrw:nClrNFBack := iif( oBrw:nClrNFBack==oBrw:nClrBackFocus,oBrw:nClrBackFocus,CLR_BLACK)
oBrw:nClrNFFore := iif( oBrw:nClrNFFore==oBrw:nClrBackFocus,CLR_BLACK,oBrw:nClrBackFocus)
oBrw:Refresh ...
by acwoo1
Thu Mar 15, 2012 4:02 am
Forum: FiveWin for Harbour/xHarbour
Topic: Color For Listbox
Replies: 12
Views: 3980

Re: Color For Listbox

Thanks For Your Help

::nClrBackHead := GetSysColor( COLOR_BTNFACE )
::nClrForeHead := GetSysColor( COLOR_BTNTEXT )
::nClrBackFocus := GetSysColor( COLOR_HIGHLIGHT )
::nClrForeFocus := GetSysColor( COLOR_HIGHLIGHTTEXT) // CeSoTech CLR_WHITE


::nClrFBack := ::nClrBackHead // by CeSoTech ...
by J. Ernesto
Thu Feb 02, 2012 7:01 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Aproperties Tsay, Timage, tBtnbmp
Replies: 5
Views: 1332

Aproperties Tsay, Timage, tBtnbmp

... n , n += nwant ,;
n := MAX ( 1, MIN ( n, EVAL ( oBrw:bLogicLen ) ) ), n - nOld }
oBrw:bLogicLen := { | | LEN ( oDlg:aControls ) }
oBrw:nClrBackFocus := nRGB ( 250, 250, 016 ) && Color del Fondo Amarillo
oBrw:nClrForeFocus := nRGB ( 016, 032, 250 ) && Color del Texto Azul
oBrw:nLineStyle ...
by cdmmaui
Mon Jan 31, 2011 8:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox Not Focused Color
Replies: 4
Views: 742

Listbox Not Focused Color

... is not focused?

oLbx1:nClrText = { || IIF( invdet->posted, CLR_WHITE, CLR_BLACK ) }
oLbx1:nClrPane = { || IIF( invdet->posted, CLR_GREEN, CLR_WHITE ) }

oLbx1:nClrForeFocus = { || IIF( invdet->posted, CLR_WHITE, CLR_WHITE ) }
oLbx1:nClrBackFocus = { || IIF( invdet->posted, CLR_GREEN, CLR_BLUE ) }
by surGom
Fri Mar 26, 2010 12:59 am
Forum: FiveWin para Harbour/xHarbour
Topic: problema con database 2
Replies: 2
Views: 1317

problema con database 2

... 60,210,190,190,190,160,90,100,180,60}
oLbx:bSkip = { | nRecs | oMae:Skipper( nRecs ) }
oLbx:nLineStyle := 3
oLbx:lAdjlastcol:= .F.
oLbx:nClrBackFocus := CLR_CYAN
oLbx:nClrForeFocus := CLR_WHITE


REDEFINE RADIO oRad VAR nOrden ID 108, 107, 112 OF oDlg;
ON CHANGE Orden(nOrden,oLbx,oMae ...
by Colin Haig
Thu Feb 04, 2010 11:40 am
Forum: FiveWin for Harbour/xHarbour
Topic: Picklist
Replies: 6
Views: 1201

Picklist

... 2),65 + nLen ;
of oDlg ;
ON DBLCLICK (xRetVal := eval( bReturnExp ),lExit := TRUE, oDlg:End())


oLbx:nClrForeFocus := CLR_WHITE
oLbx:nClrBackFocus := CLR_BLUE
oLbx:nClrBackHead := CHEADBACK
oLbx:nClrForehead := CHEADFRONT

oLbx:bKeyChar := {|nKey| iif(nKey == VK_RETURN,(xRetVal := eval ...
by Ramon Paredes
Sat Oct 03, 2009 6:51 pm
Forum: FiveWin para Harbour/xHarbour
Topic: UN ERROR RARO (SOLUCIONADO)
Replies: 4
Views: 2691

Re: UN ERROR RARO

... Cliente al Que pertenece ","Plan Mts", "Real Mts" ;
FIELDSIZES 80,250,100,100 ;
ID 102 OF oDlg

oBrw:nClrForeFocus:= {|| CLR_YELLOW }
oBrw:nClrBackFocus:= {|| CLR_GREEN }


oBrw:bRClicked = { || oLbx:ShowSizes() }
oBrw:aJustify := {.F.,.F.,.F.,.F.}
oBrw:NCLRPANE:={||IIF((ORDKEYNO())%2==0,RGB ...
by Ramon Paredes
Sat Oct 03, 2009 6:26 pm
Forum: FiveWin para Harbour/xHarbour
Topic: UN ERROR RARO (SOLUCIONADO)
Replies: 4
Views: 2691

UN ERROR RARO (SOLUCIONADO)

... Cliente al Que pertenece ","Plan Mts", "Real Mts" ;
FIELDSIZES 80,250,100,100 ;
ID 102 OF oDlg

oBrw:nClrForeFocus:= {|| CLR_YELLOW }
oBrw:nClrBackFocus:= {|| CLR_GREEN }


oBrw:bRClicked = { || oLbx:ShowSizes() }
oBrw:aJustify := {.F.,.F.,.F.,.F.}
oBrw:NCLRPANE:={||IIF((ORDKEYNO())%2==0,RGB ...
by Colin Haig
Thu Jul 30, 2009 12:26 am
Forum: FiveWin for Harbour/xHarbour
Topic: Vertical scroll wbrowse on folders
Replies: 11
Views: 2841

Re: Vertical scroll wbrowse on folders

... eval(bData)},;
oDlg,aHead,aSizes,,,,,{||eval(bClick)},,,,,CBRWPOCOLOR)

oPoitms:SetBrowse(oLbx)
oLbx:nClrForeFocus := CBRWFORE
oLbx:nClrBackFocus := CBRWBACK
oLbx:nClrBackHead := CHEADBACK
oLbx:nClrForehead := CHEADFRONT
oLbx:aJustify := eval(bAdjust)
oLbx:nLineStyle := 1
oLbx ...
by surGom
Sun May 24, 2009 8:51 pm
Forum: FiveWin para Harbour/xHarbour
Topic: database y browse
Replies: 9
Views: 1462

database y browse

... HEADERS "BANCO", "CBU" ID 102 of oFold:adialogs[3] UPDATE

oBrw:bSkip = { | nRecs | obanpro:Skipper( nRecs ) }
oBrw:nLineStyle := 3
oBrw:nClrBackFocus := CLR_CYAN
oBrw:nClrForeFocus := CLR_WHITE
////////////////////////////////////////////////////////////////////
En cambio así sí funciona ...
by FranciscoA
Fri Feb 27, 2009 4:22 am
Forum: FiveWin para Harbour/xHarbour
Topic: LISTBOX, COLOR en barra de señalización
Replies: 4
Views: 824

Re: LISTBOX, COLOR en barra de señalización

Hola Mario. Mira si te funciona esto:

oLbx:nClrText := RGB(0,0,0) // text
oLbx:nClrPane := RGB(235,225,45) // background

//Apuntador
oLbx:nClrBackFocus := {|| GetSysColor( COLOR_ACTIVECAPTION ) } //fondo
oLbx:nClrForeFocus := {|| CLR_WHITE } //texto

o asi:
/*
Cabeceras:
oBjeto:nClrBackHead ...
by ik1mtt
Sat Feb 07, 2009 6:42 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Problema GPF
Replies: 10
Views: 2294

Re: Problema GPF

... SIZE 342,176;
FONT oFont OF oDlg;
ON CHANGE E_Loca(oDlg);
PIXEL


oLbx:nClrBackHead:=nRgb(0,130,250)
oLbx:nClrForeHead:=nRgb(0,0,0)
oLbx:nClrBackFocus:=nRgb(0,100,255)
oLbx:nClrForeFocus:=nRgb(255,255,255)

oLbx:nClrText= { || iif( deleted(), CLR_GRAY, CLR_BLUE ) }

oLbx:nClrPane := {|| iif ...
by Antonio Linares
Tue Jul 22, 2008 10:25 pm
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2008 (8.06)
Replies: 1
Views: 3461

... del API de Windows.

* Corrección: En la clase TCBrowse, uso adecuado de bloques de código para los colores en las DATAs nClrForeFocus y nClrBackFocus.

* Mejoras y correcciones en la clase TXBrowse:

a) Soporte para las clases heredadas en los comandos. Los comandos XBROWSE estaban ...