Search found 57 matches: lautosort

Return to advanced search

Re: xBrowse - ADO - SetMultiSelectCol - lAutosort

Maurizio, gracias por publicar el código, funciona de maravilla :D :D :D
by leandro
Thu Dec 21, 2023 12:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - ADO - SetMultiSelectCol - lAutosort
Replies: 3
Views: 432

Re: xBrowse - ADO - SetMultiSelectCol - lAutosort SOLVED

...    := { || oBrw:nLen }      :nRecSelWidth     := "99999"      :lAutosort := .T.            :SetMultiSelectCol()      :CreateFromCode()   END  ...
by Maurizio
Wed Sep 07, 2022 6:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - ADO - SetMultiSelectCol - lAutosort
Replies: 3
Views: 432

Re: xBrowse - ADO - SetMultiSelectCol - lAutosort

If the customer selects columns and then changes the oRs order (since SetMultiSelectCol works with oRs: AbsolutePosition) NO. oBrw:aSelected is NOT an array of oRs:AbsolutePositions. It is an array of oRs:BookMarks BookMark of a RecordSet is like RECNO() of DBF. Does not change with sorting. Absolu...
by nageswaragunupudi
Tue Sep 06, 2022 6:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - ADO - SetMultiSelectCol - lAutosort
Replies: 3
Views: 432

xBrowse - ADO - SetMultiSelectCol - lAutosort

Ciao RAO I have an xbrowse with SetMultiSelectCol and lAutosort (as example) . If the customer selects columns and then changes the oRs order (since SetMultiSelectCol works with oRs: AbsolutePosition) the result of the selected columns is wrong . I ...
by Maurizio
Tue Sep 06, 2022 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - ADO - SetMultiSelectCol - lAutosort
Replies: 3
Views: 432

xBrowse function

... oBrw ) Can you please post some sample code how these codeblocks could look like: bSetUp bSelect bValid Best regards, Otto XBrowse( uData, cTitle, lAutoSort, bSetUp, aCols, bSelect, lExcel, lFastEdit, ; bValid, cSerial, lNoModal, lAutoFit )
by Otto
Wed Aug 17, 2022 9:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse function
Replies: 4
Views: 620

AUTOCODE

... to AUTOCODE https://www.youtube.com/watch?v=FKiJc6l3oW8 First I extend Autocode to use xBrowser- funciton: //XBrowse( uData, cTitle, lAutoSort, bSetUp, aCols, bSelect, lExcel, lFastEdit, ; // bValid, "SlNo", lNoModal, lAutoFit ) Best regards, Otto
by Otto
Wed Aug 17, 2022 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AUTOCODE
Replies: 7
Views: 466

xBrowse incremental search

Hi, I have this:

oBrw:lSeekBar := .T.
oBrw:lIncrFilter := .F.
oBrw:lAutoSort := .T.
oBrw:lSeekWild := .T.

If I Set lincrFilter := .T. lSeekBar dont apear even I set lSeekBar .T.

lseekBar and lIncrFilter works together?

Thanks!
by wartiaga
Mon Feb 21, 2022 10:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse incremental search
Replies: 0
Views: 228

help with xbrowse

... := "PLANO" Lista10:nStretchCol := STRETCHCOL_LAST Lista10:lSeekBar := .T. Lista10:lIncrFilter := .T. Lista10:lSeekWild := .T. Lista10:lAutoSort := .T. Lista10:lFastEdit := .T. lista10:aCols[1]:cOrdBag := "PLANO" Lista10:aCols[1]:cSortOrder := "CODIGO" lista10:aCols[2]:cOrdBag ...
by wartiaga
Thu Feb 17, 2022 5:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help with xbrowse
Replies: 0
Views: 256

Re: xbrows function

... Customers Seek the cBrowse Start generating the browse oBrw:=xbrowse(xBrw->dbf,xBrw->title,xBrw->lSort,..... ) // XBrowse( uData, cTitle, lAutoSort, bSetUp, aCols, bSelect, lExcel, lFastEdit, bValid, cSerial, lNoModal, lAutoFit ) //more setup if possible if !empty(xBrw->Header) oBrw:setgroupheader("xBrw->header",xbrw->headerfrom,xBrw->headerto) ...
by Marc Venken
Mon Dec 06, 2021 8:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrows function
Replies: 3
Views: 614

xbrows function

... a non-modal xBrowser. I thought, maybe I can just change the source code. But you can transfer all of these parameters. XBrowse( uData, cTitle, lAutoSort, bSetUp, aCols, bSelect, lExcel, lFastEdit, bValid, cSerial, lNoModal, lAutoFit ) It is also interesting that you can get the xBrowse object ...
by Otto
Sat Dec 04, 2021 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrows function
Replies: 3
Views: 614

Re: ¿Cómo hago una búsqueda incremental en xBrowse?

... una de las instrucciones que coloque, fijandome en las sugerencias de cristobal y joao. lo unico que hice fue agregar esto: . . . oBrwArticulos :lAutoSort := .t. oBrwArticulos :lIncrFilter := .t. oBrwArticulos :lSeekWild := .t. oBrwArticulos :Seek("") . . . REDEFINE SAY oBrwArticulos:oSeek ...
by JoseAlvarez
Sat Oct 23, 2021 1:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Cómo hago una búsqueda incremental en xBrowse?
Replies: 26
Views: 2137

Re: Xbrowse - Select sort indexes

1) If oBrw:lAutoSort is .T., user can switch the sort order by clicking on the header. If oBrw:lAutoSort is .F., then this feature is disabled. We can toggle this value during runtime. making lSeekBar .f. does not deactivate using ...
by nageswaragunupudi
Thu May 13, 2021 7:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse - Select sort indexes
Replies: 9
Views: 958

Xbrowse, Mysql y Tdolphin.. error de orden..

... := {|| { nRGB(000,000,000), nRGB(128,255,128) } } // para barra de linea selecc cuando el control no tiene el foco oBrw:l2007:=.T. oBrw:lAutoSort:=.T. oBrw:nStretchCol := STRETCHCOL_WIDEST oBrw:oFont := oFont2 oBrw:bLDblClick := {|| Ing_Inv_Gral(oBrw, cTab_Art, cTab_Art:cod_art , cEmpresa), ...
by kpidata
Tue Dec 17, 2019 12:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse, Mysql y Tdolphin.. error de orden..
Replies: 1
Views: 800

Re: New FTDN May/Mayo 2019 (FWH 19.05)

... en lugar de la lógica incorporada. - El filtro incremental en un "browse" de matrices ahora se puede usar incluso cuando lAutoSort es falso. Anteriormente, al tratar de usar filtros incrementales sin autoordenación daba errores de tiempo de ejecución. - Mejora: En el método ...
by Antonio Linares
Fri Jun 07, 2019 11:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2019 (FWH 19.05)
Replies: 4
Views: 3098

New FTDN May/Mayo 2019 (FWH 19.05)

... codeblock is used to paint background of the browse, instead of the inbuilt logic. - Incremental filter in Array browse can now be used even when lAutoSort is false. Previously trying to use incremental filters without autosort was giving runtime errors. - Enhancement: method EditSource( lNew, ...
by Antonio Linares
Mon Jun 03, 2019 12:54 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2019 (FWH 19.05)
Replies: 4
Views: 3098
Next

Return to advanced search