Search found 103 matches: lvscroll

Return to advanced search

Re: xbrowse Border

... must be made in the presence of Horizontal scrolling but I not found the part where draw the box when there ::lHscroll is true better can be oBrw:lVScroll := .t. oBrw:lhScroll := .t.  if ::lDrawBorder     If ::lVScroll         ::Box( 0, 0, ::nHeight - 1, ::BrwWidth(), IfNil( ::nClrBorder, ...
by Silvio.Falconi
Mon Nov 13, 2023 8:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse Border
Replies: 1
Views: 388

xbrowse Border

...              :nClrBorder := CLR_BLACK                     END but the border is drawed only on left and up and down of the xbrowse If I make oBrw:lVScroll := .f. oBrw:lhScroll := .f. the border is painted good but I need to use Vscroll https://i.postimg.cc/1zwPXZ0g/lll.png I think ...
by Silvio.Falconi
Fri Nov 10, 2023 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse Border
Replies: 1
Views: 388

evitar que se active columna con xbrowse al dar un click

... no tiene el foco oBrw:l2007:=.T. oBrw:lFooter := (.T.) // Sí queremos línea de footer oBrw:lHScroll := (.T.) // Quitamos el scroll horizontal oBrw:lVScroll := (.T.) // Quitamos el scroll horizontal oBrw:nStretchCol := STRETCHCOL_WIDEST oBrw:bLDblClick := {|| Opcion_Producto(oBrw, cTab_Art, cEmpresa), ...
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: 1598

Xbrowser() setting not found

... "CUSTOMER" COLUMNS "STATE", "AGE", "MARRIED", "SALARY" SETUP ( ; oBrw:lHScroll := .f.,; oBrw:lVScroll := .f.,; oBrw:lToolbar := .f.,; // not ok oBrw:lFullGridClr := .t.,; oBrw:lIncrFilter := .t.,; oBrw:lSeekWild := .t.,; oBrw:lTabLikeExcel := ...
by Marc Venken
Wed Aug 30, 2023 10:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowser() setting not found
Replies: 1
Views: 298

Re: questions about xbrowse to understand better

When you do not want scrollbars, you may disable lHScroll or lVScroll No sorry, I meant that the scrollbar in this case the vertical one should be activated only when the lines exceed the height of the xbrowse control, as happens in the texplorer class ...
by Silvio.Falconi
Thu Oct 20, 2022 7:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: questions about xbrowse to understand better
Replies: 4
Views: 368

Re: questions about xbrowse to understand better

When you do not want scrollbars, you may disable lHScroll or lVScroll
by nageswaragunupudi
Thu Oct 20, 2022 6:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: questions about xbrowse to understand better
Replies: 4
Views: 368

Re: no sizing the column of xbrowse

... config I have allready WITH OBJECT oBrw :nRowHeight := 27 :nClrBorder := CLR_GRAY :lDrawBorder := .t. * :nColorBox := CLR_HRED :lHscroll := .f. :lVscroll := .f. :l2007 := .f. :l2015 := .f. :lAllowRowSizing := .f. :lAllowColSwapping := .f. :lAllowColHiding := .f. :lRecordSelector := .f. :nRowDividerStyle ...
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: 506

ArrayIncrFilter

... := MARQSTYLE_HIGHLCELL oBrw[I]:lFastEdit := .T. oBrw[I]:nFreeze := 4 oBrw[I]:nHeaderLines := 2 oBrw[I]:lHScroll := .f. oBrw[I]:lVScroll := .F. oBrw[I]:bPastEof := {|| NewReg(aData,oBrw,oFld:nOption) } oBrw[I]:lFooter := .t. oBrw[I]:nFooterHeight := 35 // Altura del footer oBrw[I]:lIncrFilter ...
by jbrita
Thu Apr 01, 2021 2:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ArrayIncrFilter
Replies: 2
Views: 753

Brinco en Listbox

... oLbx:Refresh() Si se mueven los registros en el Listbox, pero con toda la "Imagen", es posible hacer lo mismo que hace el lVScroll ? me refiero como brinca el puntero al hacer click en los simbolos de arriba o abajo. Espero haberme explicado bien, gracias
by servicomver
Mon Mar 15, 2021 8:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Brinco en Listbox
Replies: 1
Views: 341

Imágenes en Xbrowse [SOLUCIONADO]

... HEADERS "Cliente", "Atendido"; COLSIZES 500, 70 NOBORDER FASTEDIT FOOTERS // oBrw:lHScroll:= .F. // oBrwm:lVScroll:= .T. oBrw:l2007 := .T. oBrw:lTransparent := .f. oBrw:lDesign := .f. oBrw:lRecordSelector := .T. oBrw:lVScroll := .t. oBrw:lHScroll := .f. ...
by Ramón J.
Thu Nov 26, 2020 9:29 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imágenes en Xbrowse [SOLUCIONADO]
Replies: 3
Views: 763

Re: Como me refiero al total de una columna

... JUSTIFY {AL_RIGHT,AL_RIGHT,AL_RIGHT}; FOOTERS AUTOSORT BACKGROUND oApp:cBrush WITH OBJECT oBry :l2007 := (.F.) :lHScroll := (.F.) :lVScroll := (.F.) :lFooter := (.T.) :nMarqueeStyle := MARQSTYLE_HIGHLROWMS :nColDividerStyle := LINESTYLE_LIGHTGRAY :nRowDividerStyle := LINESTYLE_LIGHTGRAY ...
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: 1211

Re: XBrowse: how to hide vertical scrollbar

Enrico Maria Giordano wrote:I want to hide the vertical scrollbar of an XBrowse but I need to do it in the ON INIT clause. oBrw:lVScroll = .F. doesn't work.

Thank you for any help.

EMG


strange, do you have a small test to try ?
by Silvio.Falconi
Tue Oct 06, 2020 11:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: how to hide vertical scrollbar
Replies: 3
Views: 539

XBrowse: how to hide vertical scrollbar

I want to hide the vertical scrollbar of an XBrowse but I need to do it in the ON INIT clause. oBrw:lVScroll = .F. doesn't work.

Thank you for any help.

EMG
by Enrico Maria Giordano
Tue Oct 06, 2020 9:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: how to hide vertical scrollbar
Replies: 3
Views: 539

Need Help With xBrowse (Resolved)

... := 3 //LINESTYLE_BLACK oBrw:nRowDividerStyle := 3 //LINESTYLE_BLACK oBrw:lColDividerComplete := .T. oBrw:lHScroll := .T. oBrw:lVScroll := .T. oBrw:lAllowColSwapping := .T. oBrw:nFreeze := 2 oBrw:lFastEdit := .T. AEval( oBrw:aCols, { |o| o:nHeadStrAlign := AL_CENTER } ) oBrw:bPopUp ...
by RiazKhan
Sat Apr 04, 2020 1:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need Help With xBrowse (Resolved)
Replies: 6
Views: 1146

Re: Ayuda Para Totalizar Columna en XBROWSE

... este caso estoy usando Array y no aqui el codigo no funciona el Totalizar, pero extrañamente se actualiza Solo al hacer Click en la barra " lVScroll ", cargo el array desde el Get y la unica forma que se actualice es Cliqueando en la Barra del Scroll. Espero por su ayuda. Muchos Saludos. ...
by remtec
Wed Oct 30, 2019 2:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda Para Totalizar Columna en XBROWSE
Replies: 5
Views: 768
Next

Return to advanced search