Search found 31 matches: oxbrw

Return to advanced search

Re: xBrowse - how to oXbrw:gotop() after header is click?

Yes. Is it as simple as creating an index with the expression A+B? Yes, and a little more. Also assign oCol:cSortOrder := <OrderTag> and oCol:cOrdBag := <cOrdBag> // if separate Example (DBFCDX): INDEX ON COLA+COLB TAG IDXAB TO TMP MEMORY oCol:cSortOrder := "IDXAB" oCol:cOrdBa...
by nageswaragunupudi
Mon May 30, 2022 4:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - how to oXbrw:gotop() after header is click?
Replies: 9
Views: 536

Re: xBrowse - how to oXbrw:gotop() after header is click?

Yes. Is it as simple as creating an index with the expression A+B?
by hua
Mon May 30, 2022 3:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - how to oXbrw:gotop() after header is click?
Replies: 9
Views: 536

Re: xBrowse - how to oXbrw:gotop() after header is click?

Thank you very much Rao. It works!

On another topic, is it possible to get a sorting based on a group of column ?
For example, if click on header of col A, sorting is actually col A+col B>

TIA
by hua
Mon May 30, 2022 2:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - how to oXbrw:gotop() after header is click?
Replies: 9
Views: 536

Re: xBrowse - how to oXbrw:gotop() after header is click?

Please try:
Code: Select all  Expand view
     oBrw:bLClickHeaders := { |r,c,f,o| If( EMPTY( o:cOrder ),,(o:oBrw:GoTop(),o:oBrw:Refresh() ) ) }
 
by nageswaragunupudi
Fri May 27, 2022 10:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - how to oXbrw:gotop() after header is click?
Replies: 9
Views: 536

Re: xBrowse - how to oXbrw:gotop() after header is click?

Sorry, FWH11.08 is more than ten year old and did not support this.

Let me see the source code of FWH1108 and advise you.
by nageswaragunupudi
Fri May 27, 2022 4:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - how to oXbrw:gotop() after header is click?
Replies: 9
Views: 536

Re: xBrowse - how to oXbrw:gotop() after header is click?

Thanks for the prompt reply Rao.

But doesn't seem to work with FWH11.08. I ended up with an extra column called BONSORT
by hua
Fri May 27, 2022 3:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - how to oXbrw:gotop() after header is click?
Replies: 9
Views: 536

xBrowse - how to oXbrw:gotop() after header is click?

If user select a header to sort on or change ascending/descending order, how do I get xbrowse to always perform a oXbrw:goTop() afterwards?
by hua
Fri May 27, 2022 2:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - how to oXbrw:gotop() after header is click?
Replies: 9
Views: 536

Re: xbrowse bmp border

Fernando
Quizas si cambias el fondo de la columna puedas conseguir ese efecto
oXBrw:aCols[n]:bClrSel := { || { , CLR_BLACK } }
ó
oXBrw:aCols[n]:bClrStd := { || { , CLR_BLACK } }
Quizas dependa tambien si tienes ajustada la imagen para que ocupe toda la columna o no.
by cnavarro
Thu Aug 29, 2013 8:00 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowse bmp border
Replies: 6
Views: 831

Re: Estilo de control

Antonio
Ya habia probado con:

? GetWindowLong( oXBrw:hWnd, -16 ) //GWL_STYLE )

y siempre obtenia 0, y eso me tiene parado

MsgInfo( lAnd( GetWindowLong( oXBrw:hWnd, -16 ), WS_BORDER ) )

Devuelve siempre .F.

El valor de GWL_STYLE es -16 ?, verdad?

Gracias y saludos
by cnavarro
Wed Aug 21, 2013 5:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Estilo de control (Solucionado)
Replies: 5
Views: 975

XBrowse y Grupo de Columnas

... también pongo unas imágenes Son: El METHOD SetColumns( nRow, nCol, nFlags ) CLASS TXBrowse y la funcion static function GenMenuBlock( aCols, nFor, oXbrw ) //----------------------------------------------------------------------------//METHOD SetColumns( nRow, nCol, nFlags ) CLASS TXBrowse  ...
by cnavarro
Sun Aug 18, 2013 10:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse y Grupo de Columnas
Replies: 24
Views: 9493

Re: oxBrw - bRClick

Dear Mr. Rao,
thank you very much.
Best regards,
Otto
by Otto
Sat Jan 23, 2010 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oxBrw - bRClick
Replies: 2
Views: 422

Re: oxBrw - bRClick

oBrw:bRClicked := { | | ... }
by nageswaragunupudi
Sat Jan 23, 2010 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oxBrw - bRClick
Replies: 2
Views: 422
Next

Return to advanced search