Search found 112 matches: bclrselfocus

Return to advanced search

Error Fwh 24.02 con XBROWSE

... 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 := 2 :nStretchCol := ...
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: 95

CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE

... := MARQSTYLE_HIGHLROW // Con cursor de todo el renglón oBrw:nColDividerStyle := LINESTYLE_RAISED oBrw:nRowDividerStyle := LINESTYLE_RAISED oBrw:bClrSelFocus := {|| { nRGB( 0, 0, 0), nRGB(128,255,128) } } // para barra de linea selecc cuando el control tiene el foco oBrw:lColDividerComplete := ...
by kpidata
Fri Sep 01, 2023 7:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE
Replies: 1
Views: 330

evitar que se active columna con xbrowse al dar un click

... := MARQSTYLE_HIGHLROW // Con cursor de todo el renglón oBrw:nColDividerStyle := LINESTYLE_RAISED oBrw:nRowDividerStyle := LINESTYLE_RAISED oBrw:bClrSelFocus := {|| { nRGB( 0, 0, 0), nRGB(128,255,128) } } // para barra de linea selecc cuando el control tiene el foco oBrw:lColDividerComplete := ...
by kpidata
Fri Sep 01, 2023 7:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Inhabilitar columna en xBrowse - Disable column in xBrowse
Replies: 8
Views: 1076

Re: ERROR XBROWSE CON MERGEVERT

... CELL olbx1:l2007:=.t. olbx1:gotop() olbx1:bClrStd:={|| aClrCol [ olbx1:keyno%2+1]} olbx1:bClrSel:={|| { nRGB( 0, 0,255), aGradBarSel } } olbx1:bClrSelFocus := { || { CLR_BLACK, aGradBarSelFocus } } olbx1:nColDividerStyle := LINESTYLE_BLACK olbx1:nMarqueeStyle := 3 olbx1:lcoldividercomplete:=.f. ...
by elmoiquique
Mon Aug 28, 2023 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR XBROWSE CON MERGEVERT
Replies: 8
Views: 569

Re: changing color in xBrowse

bClrStd, bClrSelFocus
by nageswaragunupudi
Sun Apr 16, 2023 10:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: changing color in xBrowse
Replies: 3
Views: 297

Re: Fighting Xbrowse and lozing !!!

... ), CLR_HRED, nClrBackBrw ),;                           MY_PAARS } }   endif   cClrBack     := Eval( oBrwSel:bClrSelFocus )[ 2 ]  //  I don't know what this is doing   oBrwSel:SetChecks()   oBrwSel:bRClickHeaders := { || XbrColSelector( ...
by Marc Venken
Thu Dec 22, 2022 10:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fighting Xbrowse and lozing !!!
Replies: 18
Views: 1569

Re: New FTDN October/Octure (FWH 22.10)

... un proyecto con ella. No lo hemos probado extensamente así que los comentarios son bienvenidos. * xbrowse.prg: - Desde FWH2008, bClrStd, bClrSel, bClrSelFocus se evalúan con dos parámetros, a saber, los objetos browse y column. El objeto column es nulo cuando browse evalúa los bloques. Sin embargo, ...
by Antonio Linares
Mon Nov 07, 2022 9:38 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octure (FWH 22.10)
Replies: 2
Views: 862

New FTDN October/Octure (FWH 22.10)

... can easily build a project using it. We have not extensitevely tested it so feedback is welcome. * xbrowse.prg: - Since FWH2008, bClrStd, bClrSel, bClrSelFocus are evaluated with two parameters, viz., browse and column objects. column object is nil when browse evaluates the blocks.However, if a ...
by Antonio Linares
Wed Nov 02, 2022 11:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octure (FWH 22.10)
Replies: 2
Views: 862

Re: Xbrowse Browsing Information Orbital Change Color

... setting and see if the problem is fixed: oBrw:lContrastClr := .F. 4) If the problem still persists, please let us see your codeblocks: bClrStd, bClrSelFocus Dear Rao, I add oBrw:lContrastClr := .F. Still got problem. Look my codeblocks: bClrStd, bClrSelFocus below: oListBox:bClrStd = {||If(oListBox:KeyNo() ...
by richard-service
Thu Jul 21, 2022 1:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Browsing Information Orbital Change Color
Replies: 13
Views: 906

Re: Xbrowse Browsing Information Orbital Change Color

... setting and see if the problem is fixed: oBrw:lContrastClr := .F. 4) If the problem still persists, please let us see your codeblocks: bClrStd, bClrSelFocus
by nageswaragunupudi
Wed Jul 20, 2022 3:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse Browsing Information Orbital Change Color
Replies: 13
Views: 906

Re: Colorized cell of xbrowse

... .t. //Ineed the value zero FOR i := 1 TO LEN(:aCols) oCol := :aCols[ i ] oCol:nWidth := 30 if i >1 oCol:bClrStd := ChangeColor( oBrw, i ) oCol:bClrSelFocus := {|| { CLR_BLACK, { { 1, RGB( 252, 235, 220 ), RGB( 255, 0,0 ) } }}} endif NEXT :CreateFromCode() :aCols[ 1 ]:nWidth := 100 :aCols[ 1 ...
by FranciscoA
Mon Mar 07, 2022 2:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Colorized cell of xbrowse
Replies: 13
Views: 1275

Re: Colorized cell of xbrowse

... .t. //Ineed the value zero FOR i := 1 TO LEN(:aCols) oCol := :aCols[ i ] oCol:nWidth := 30 if i >1 oCol:bClrStd := ChangeColor( oBrw, i ) oCol:bClrSelFocus := {|| { CLR_BLACK, { { 1, RGB( 252, 235, 220 ), RGB( 255, 0,0 ) } }}} endif NEXT :CreateFromCode() :aCols[ 1 ]:nWidth := 100 :aCols[ 1 ...
by Silvio.Falconi
Sun Mar 06, 2022 4:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Colorized cell of xbrowse
Replies: 13
Views: 1275

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 := 2 :nStretchCol := ...
by CARLOS ATUNCAR
Mon Oct 18, 2021 2:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse + Tdolphin + Mysql
Replies: 2
Views: 462

Re: Color en filas de XBrowse

bClrSelFocus // when the browse has focus
bClrSel // when browse is not in focus
by nageswaragunupudi
Tue Jun 22, 2021 4:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Color en filas de XBrowse
Replies: 1
Views: 454

Re: xBrowse color

bClrSel,; // default color pair for selected row
bClrSelFocus,; // default color pair for selected row when control has focus
by FranciscoA
Wed Jan 13, 2021 11:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse color (Solved)
Replies: 8
Views: 709
Next

Return to advanced search