Search found 29 matches: bclrrowfocus

Return to advanced search

Error Fwh 24.02 con XBROWSE

... NOICONIZE @ 10,10 XBROWSE oBrw OF oWnd ; DATASOURCE oQry ; COLUMNS aCols ; LINES CELL AUTOSORT SIZE -10,-10 PIXEL FONT oFont WITH OBJECT oBrw :bClrRowFocus := oBrw:bClrSelFocus :nRowHeight := 25 :nHeaderLines := 4 :nHeaderHeight := 70 :oHeaderFonts := oFont :nFooterHeight := 20 :nFooterLines ...
by CARLOS ATUNCAR
Mon Apr 08, 2024 6:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error Fwh 24.02 con XBROWSE
Replies: 0
Views: 89

Re: xbrowse + Tdolphin + Mysql

... ; } @ 0,0 XBROWSE oBrw OF oWnVta ; DATASOURCE oQry ; COLUMNS aCols ; LINES CELL AUTOSORT WITH OBJECT oBrw :bClrRowFocus := oBrw:bClrSelFocus :nRowHeight := 25 :nHeaderLines := 3 :nHeaderHeight := 60 :oHeaderFonts := oFont :nFooterHeight := 20 :nFooterLines ...
by CARLOS ATUNCAR
Mon Oct 18, 2021 2:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse + Tdolphin + Mysql
Replies: 2
Views: 462

Re: problema de pintado del xBrowse

... la celda sobre la que está el cursor. Lo he intentado con oBrw:bClrSel := {|| { CLR_BLACK,fondo}} oBrw:bClrSelFocus := {|| { CLR_BLACK,CRED}} oBrw:bClrRowFocus := {|| { CLR_BLACK,letradialog}} La única que responde a los cambios de color, y solo sobre la celda es oBrw:bClrSelFocus , las demás no ...
by jvtecheto
Fri May 29, 2020 6:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema de pintado del xBrowse
Replies: 8
Views: 1589

Re: problema de pintado del xBrowse

... la celda sobre la que está el cursor. Lo he intentado con oBrw:bClrSel := {|| { CLR_BLACK,fondo}} oBrw:bClrSelFocus := {|| { CLR_BLACK,CRED}} oBrw:bClrRowFocus := {|| { CLR_BLACK,letradialog}} La única que responde a los cambios de color, y solo sobre la celda es oBrw:bClrSelFocus , las demás no ...
by pacotre
Fri May 29, 2020 1:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: problema de pintado del xBrowse
Replies: 8
Views: 1589

Color del Footer en Xbrowse

... un browse de ingresos/gastos y en las líneas del browse pinto el color del contenido en color distinto para ingresos y gastos. oApp():oGrid:bClrRowFocus := { || { iif( AP->ApTipo == "I", oApp():cClrIng, oApp():cClrGas ), oApp():nClrHL } } oApp():oGrid:bClrSelFocus := { || { ...
by José Luis Sánchez
Wed Oct 16, 2019 8:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Color del Footer en Xbrowse
Replies: 2
Views: 544

Re: Error al insertar registro con Clase MariaD

... := { || oBrw:nLen } :nColDividerStyle := LINESTYLE_LIGHTGRAY :nRowDividerStyle := LINESTYLE_LIGHTGRAY :nMarqueeStyle := MARQSTYLE_HIGHLROWMS :bClrRowFocus := { || { CLR_BLACK, RGB(185,220,255) } } :blDblClick := { | nRow, nCol, nKey | Nuevocatas(oBrw,.T.,oRs)} :bClrEdits := { || { CLR_BLACK, ...
by Adolfredo Martinez
Tue Feb 19, 2019 12:07 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error al insertar registro con Clase MariaD
Replies: 10
Views: 1271

xbrowse com um só registro

... := 5 //LINESTYLE_BLACK // COLUNAS oBrw:lColDividerComplete := .T. oBrw:nHeaderHeight :=30 oBrw:nStretchCol := STRETCHCOL_LAST oBrw:bClrRowFocus := { || { CLR_BLACK, RGB( 150,231,70 ) } } oBrw:cAlias("TEMP072") oBrw:l2007:=.t. oBrw:bClrSel:={ || { CLR_BLACK, RGB(185,220,255) ...
by Wanderson
Mon Jul 25, 2016 6:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse com um só registro
Replies: 2
Views: 627

Ajuda com xbrowse

... := 5 //LINESTYLE_BLACK // COLUNAS oBrw:lColDividerComplete := .T. oBrw:nHeaderHeight :=30 oBrw:nStretchCol := STRETCHCOL_LAST oBrw:bClrRowFocus := { || { CLR_BLACK, RGB( 150,231,70 ) } } oBrw:bChange := { || Muda(), oBrw:Refresh() } oCol := oBrw:AddCol() oCol:AddResource("CHECKON") ...
by Wanderson
Thu Jul 21, 2016 12:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajuda com xbrowse
Replies: 0
Views: 542

Re: New useful addition to xBrowse

... the entire row and at the same time provide inline editing and good visibility of the active cell to the user then the best option is to use oBrw:bClrRowFocus. In this case, entire row is painted with bClrRowFocus and the active cell is painted with bClrSelFocus. This has the advantage of displaying ...
by nageswaragunupudi
Tue Mar 01, 2016 3:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New useful addition to xBrowse
Replies: 2
Views: 768

xbrowse ajustar columnas

... := .f. :lColDividerComplete := .f. :lAllowRowSizing := .f. :lAllowColHiding := .f. :lKineticBrw := .f. :nRowHeight := 24 :nHeaderHeight := 22 :bClrRowFocus := { || { CLR_BLACK, aGradRowSel/*RGB(185,220,255)*/ } } :bClrStd := {|| { nRGB( 0, 0, 0), nRGB(255,248,220) } } // colores para lineas ...
by Patricio Avalos Aguirre
Mon Feb 08, 2016 2:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse ajustar columnas
Replies: 1
Views: 681

Re: errores de xbrowse ??? No se corrigió

... := .T. :lFastEdit := .T. :nFreeze := 1 :cAlias := cAliTab :nStretchCol := 1 :nMarqueeStyle := 4 :bClrSelFocus := { || { CLR_GREEN, aSelGrad } } :bClrRowFocus := { || { CLR_GREEN, aRowGrad } } IF fFunDCl <> NIL :bLDblClick := { || IF(fFunDCl=="FIN",oDlgSel:End() , &(fFunDCl) ...
by russimicro
Thu Jan 22, 2015 1:05 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: errores de xbrowse ??? NO SOLUCIONADO ??? AYUDA
Replies: 8
Views: 2269

errores de xbrowse ??? NO SOLUCIONADO ??? AYUDA

... := .T. :lFastEdit := .T. :nFreeze := 1 :cAlias := cAliTab :nStretchCol := 1 :nMarqueeStyle := 4 :bClrSelFocus := { || { CLR_GREEN, aSelGrad } } :bClrRowFocus := { || { CLR_GREEN, aRowGrad } } IF fFunDCl <> NIL :bLDblClick := { || IF(fFunDCl=="FIN",oDlgSel:End() , &(fFunDCl) ...
by russimicro
Fri Jan 02, 2015 9:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: errores de xbrowse ??? NO SOLUCIONADO ??? AYUDA
Replies: 8
Views: 2269

xbrowse to excel problem (numeric field with decimal)

... dialog ownd TITLE "Test" FROM 0,0 TO 24,80 @ 0,0 XBROWSE oBrw OF ownd ALIAS cAlias ; SIZE 200,100 ; FOOTERS FASTEDIT LINES CELL oBrw:bClrRowFocus := oBrw:bClrSelFocus oBrw:CreateFromCode() oWnd:oClient := oBrw @9 ,1 button "To Excel" ACTION oBrw:ToExcel() of ownd ACTIVATE ...
by Romeo
Thu Dec 11, 2014 3:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse to excel problem (numeric field with decimal)
Replies: 2
Views: 621

xbrowse to excel

... dialog ownd TITLE "Test" FROM 0,0 TO 24,80 @ 0,0 XBROWSE oBrw OF ownd ALIAS cAlias ; SIZE 200,100 ; FOOTERS FASTEDIT LINES CELL oBrw:bClrRowFocus := oBrw:bClrSelFocus oBrw:CreateFromCode() oWnd:oClient := oBrw @9 ,1 button "To Excel" ACTION oBrw:ToExcel() of ownd ACTIVATE ...
by Romeo
Tue Dec 09, 2014 11:46 am
 
Forum: All products support
Topic: xbrowse to excel
Replies: 6
Views: 1695

Re: XBROWSE ARRAY go to some ROW

Mr. Rao, yes it is now the selected row, but the colors from ::bClrRowFocus are not shown !? Only when i click in the row this color is in use. I will display the selected row in ::bClrRowFocus-colors without using the mouse. When you use oBrw:bClrRowFocus, ...
by nageswaragunupudi
Tue Jun 24, 2014 9:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE ARRAY go to some ROW
Replies: 9
Views: 1750
Next

Return to advanced search