Search found 141 matches: nrowdividerstyle

Return to advanced search

Problemas con comportamiento de XBrowse.

... ; ALIAS cAlias FOOTERS LINES CELL NOBORDER ; BACKGROUND aQueGrad VERTICAL oBrw:nStretchCol := 2 oBrw:nRowHeight := 30 oBrw:nMarqueeStyle := 4 oBrw:nRowDividerStyle := 2 // color gris y fino la division de columnas oBrw:nColDividerStyle := 0 // color gris y fino la division de renglones oBrw:lColDividerComplete ...
by José Camilo
Fri Mar 15, 2024 2:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con comportamiento de XBrowse.
Replies: 1
Views: 392

CONTROLAR CLICK SOBRE COLUMNA EN XBROWSE

... oBrw:nMarqueeStyle := 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 ...
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

... oBrw:nMarqueeStyle := 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 ...
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

... } } olbx1:nColDividerStyle := LINESTYLE_BLACK olbx1:nMarqueeStyle := 3 olbx1:lcoldividercomplete:=.f. olbx1:acols[1]:lAllowsizing:=.f. olbx1:nRowDividerStyle := LINESTYLE_BLACK olbx1:lallowrowsizing :=.f. olbx1:setcolor(rgb(0,0,0),rgb(255,255,206)) olbx1:nRowHeight := 27 oLbx1:acols[1]:lMergevert:=.t. ...
by elmoiquique
Mon Aug 28, 2023 3:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR XBROWSE CON MERGEVERT
Replies: 8
Views: 569

Re: Show LINESTYLE of Xbrowse on line

before set all :nColDividerStyle := LINESTYLE_LIGHTGRAY :nRowDividerStyle := LINESTYLE_LIGHTGRAY then If lShowlines       FOR i := 1 TO (nRecords*5)  STEP 5             oCol := ::oLbx:aCols[ i ]             ColPenColor( oCol, CLR_BLACK ...
by Silvio.Falconi
Thu Nov 03, 2022 9:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show LINESTYLE of Xbrowse on line - (run with errors)
Replies: 17
Views: 1065

Re: xbrowse nRowDividerStyle

Not possible now.
We may provide this feature in future.
by nageswaragunupudi
Thu Sep 22, 2022 4:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse nRowDividerStyle
Replies: 1
Views: 185

xbrowse nRowDividerStyle

Hi
how can I condition the nRowDividerStyle?

I'd like nRowDividerStyle (LINESTYLE_BLACK) when inside DBF record there is logical value TRUE in CONTROL field else there must be no separating line between one line and another (LINESTYLE_NOLINES).

thanks
by damianodec
Thu Sep 22, 2022 9:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse nRowDividerStyle
Replies: 1
Views: 185

Re: no sizing the column of xbrowse

... :lVscroll := .f. :l2007 := .f. :l2015 := .f. :lAllowRowSizing := .f. :lAllowColSwapping := .f. :lAllowColHiding := .f. :lRecordSelector := .f. :nRowDividerStyle := LINESTYLE_LIGHTGRAY :nColDividerStyle := LINESTYLE_LIGHTGRAY :SetGroupHeader( "Numeri Estratti ", 1, 6 ) :SetGroupHeader( ...
by Silvio.Falconi
Thu May 12, 2022 7:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: no sizing the column of xbrowse
Replies: 3
Views: 446

Re: Colorized cell of xbrowse

... :lAllowRowSizing := .F. :lAllowColSwapping := .F. :lAllowColHiding := .F. :lRecordSelector := .F. :nColDividerStyle := LINESTYLE_LIGHTGRAY :nRowDividerStyle := LINESTYLE_LIGHTGRAY :nRowDividerStyle := LINESTYLE_NOLINES :nColDividerStyle := LINESTYLE_LIGHTGRAY :lDisplayZeros := .t. //Ineed ...
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

... :lAllowRowSizing := .F. :lAllowColSwapping := .F. :lAllowColHiding := .F. :lRecordSelector := .F. :nColDividerStyle := LINESTYLE_LIGHTGRAY :nRowDividerStyle := LINESTYLE_LIGHTGRAY :nRowDividerStyle := LINESTYLE_NOLINES :nColDividerStyle := LINESTYLE_LIGHTGRAY :lDisplayZeros := .t. //Ineed ...
by Silvio.Falconi
Sun Mar 06, 2022 4:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Colorized cell of xbrowse
Replies: 13
Views: 1275

help with xbrowse

... Lista10 := TXBrowse():New( oDlgConta ) Lista10:nMarqueeStyle := MARQSTYLE_HIGHLROW Lista10:nColDividerStyle := LINESTYLE_BLACK Lista10:nRowDividerStyle := LINESTYLE_BLACK Lista10:CreateFromResource( 109 ) oCol:= Lista10:AddCol() oCol:bStrData := { || PLANO->CODIGO} oCol:cHeader := ...
by wartiaga
Thu Feb 17, 2022 5:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help with xbrowse
Replies: 0
Views: 258

Re: xbrowse + Tdolphin + Mysql

... :lRecordSelector := .F. :lHScroll := .F. :l2007 := .F. :lFooter := .T. :lDrawBorder := .t. :lAllowColReGroup := .T. :lColDividerComplete := .T. :nRowDividerStyle :=LINESTYLE_BLACK :bClrHeader := {|| { nRGB(000,000,000), nRGB(128,255,128) } } :bClrSel := { || { CLR_BLACK, CLR_HGRAY } } :SetGroupHeader( ...
by CARLOS ATUNCAR
Mon Oct 18, 2021 2:25 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse + Tdolphin + Mysql
Replies: 2
Views: 462

ArrayIncrFilter

... ; DATASOURCE aData[I] FOOTERS AUTOSORT; LINES CELL cols{ 1,2,3,4 } OF oFld:aDialogs[ I ] oBrw[I]:nColDividerStyle := LINESTYLE_BLACK oBrw[I]:nRowDividerStyle := LINESTYLE_BLACK oBrw[I]:nMarqueeStyle := MARQSTYLE_HIGHLCELL oBrw[I]:lFastEdit := .T. oBrw[I]:nFreeze := 4 oBrw[I]:nHeaderLines ...
by jbrita
Thu Apr 01, 2021 2:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ArrayIncrFilter
Replies: 2
Views: 634

XBROWSE REFRESCO DE TABLA

... "Dirección",; "C.U.I.T."; oBrw:nMarqueeStyle := MARQSTYLE_HIGHLCELL // es 3 oBrw:nColDividerStyle := LINESTYLE_BLACK oBrw:nRowDividerStyle := LINESTYLE_BLACK oBrw:lColDividerComplete := .t. oBrw:nHeaderLines := 1 // Altura encabezamiento oBrw:nDataLines := 1 // Altura líneas ...
by pedroluis
Thu Jan 28, 2021 5:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE REFRESCO DE TABLA
Replies: 4
Views: 755

XBROWSE MARIADB REFRESCAR TABLA

... ; JUSTIFY AL_CENTER, nil, AL_CENTER, AL_CENTER oBrw:nMarqueeStyle := MARQSTYLE_HIGHLCELL // es 3 oBrw:nColDividerStyle := LINESTYLE_BLACK oBrw:nRowDividerStyle := LINESTYLE_BLACK oBrw:lColDividerComplete := .t. oBrw:bClrStd := { || { CLR_BLACK, If( oBrw:KeyNo % 2 == 0, RGB(160,225,255), CLR_WHITE ...
by pedroluis
Fri Dec 11, 2020 12:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE MARIADB REFRESCAR TABLA
Replies: 2
Views: 626
Next

Return to advanced search