Search found 404 matches: autosort

Return to advanced search

Re: xBrowse AUTOSORT DBF does not work

@ 14,72 XBROWSE oVMenuBrowse SIZE -10,-21 PIXEL OF oDlg ;          ALIAS "CLIENTES" AUTOSORT;          COLUMNS "CODIGO","NOMBRE" ;          HEADERS "Código", "Nombre" ...
by nageswaragunupudi
Thu Dec 26, 2019 4:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse AUTOSORT DBF does not work
Replies: 3
Views: 549

xBrowse AUTOSORT DBF does not work

Hello, I have an xBrowse defined such way:  @ 14,72 XBROWSE oVMenuBrowse SIZE -10,-21 PIXEL OF oDlg ;          ALIAS "CLIENTES" AUTOSORT;          FIELDS CLIENTES->CODIGO,CLIENTES->NOMBRE ;          HEADERS "Código", "Nombre"  ;          SIZES  90, 80  Indexes ...
by MOISES
Wed Dec 25, 2019 6:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse AUTOSORT DBF does not work
Replies: 3
Views: 549

Insertar/Modificar registros en ACCESS

... WINDOW oDlg MDICHILD OF WndMain() TITLE cTitulo @ 0,0 XBROWSE oBrw ; COLUMNS "cCodMar", "cDesMar" ; OF oDlg ; RECORDSET oRs ; AUTOSORT FOOTERS FASTEDIT LINES CELL AEval( oBrw:aCols, { |o| o:cToolTip := { 'Column :' + CRLF + o:cHeader, 'ToolTip' }, ; o:nEditType := EDIT_GET ...
by juanjogascem
Tue Dec 03, 2019 10:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar/Modificar registros en ACCESS
Replies: 5
Views: 887

Re: Colorear celdas conforme a condicion externa

... lugar de usar variables estáticas para el array de colores, utiliza el propio aArrayData de oBrw1, porque si en el xbrowse oBrw1, se ha hecho el AUTOSORT automáticamente te vas a volver loco oBrw2:aCols[n]:bClrStd := ColorCelda( oBrw1, n ) 
by cnavarro
Tue Nov 19, 2019 8:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Colorear celdas conforme a condicion externa
Replies: 9
Views: 1071

Re: AUTOSORT xBrowse

... this is the right way. This creates index tags on all columns in a temporary index. This index will be removed after the dbf is closed. Useful for autosort. function TempTest()   local oDlg, oBrw   USE CUSTOMER SHARED NEW VIA "DBFCDX"   FW_CdxCreate( ...
by nageswaragunupudi
Sun Jun 23, 2019 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: AUTOSORT xBrowse
Replies: 1
Views: 552

AUTOSORT xBrowse

Dear Mr. Rao,
how can we use AUTOSORT with dbf files which do not have indexes.
Should we create for every field an index.
I tryed with FW_CdxCreate(,.t.) .
Is this the right way or is there an ad hoc indexing way. Only for one column.

Thank you in advance
Otto
by Otto
Sat Jun 22, 2019 8:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: AUTOSORT xBrowse
Replies: 1
Views: 552

Re: trasparent bitmap on xbrowse

... a mouse click, the gap is visible. The test is using a bClrStd-combination @ 80,20 XBROWSE oBrw SIZE 520, 485 PIXEL OF oDlg2; DATASOURCE oCust ; AUTOSORT FOOTERS FASTEDIT ; COLUMNS "Last", "First", "Age", "Married", "Values1", "Values2" ...
by ukoenig
Tue Jun 11, 2019 11:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: trasparent bitmap on xbrowse
Replies: 7
Views: 915

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

... := .T., y el cursor se mueve hacia la derecha con la tecla de flecha, el resaltado no se borra de las celdas anteriores. Corregido. - Autosort: Incluso si no se especifica autoordenación cuando se crea el browse, internamente el browse se mantiene preparado para autoordenación. El ...
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: 3195

New FTDN May/Mayo 2019 (FWH 19.05)

... 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, cFieldList, aInitVals ) New parameter aInitVals: If specified, non-empty ...
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: 3195

Re: New FTDN March/Marzo 2019 (FWH 19.03)

... se utilizan para dibujar el código de barras y cuando el código especificado no es compatible, por defecto code128. * XBrowse: - Corrección: Autosort: Al hacer clic por segunda vez en una columna ordenada no se cambia entre orden ascendente y descendente en el caso de DBF y TDatabase. Arreglado ...
by Antonio Linares
Mon Apr 08, 2019 8:49 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2019 (FWH 19.03)
Replies: 2
Views: 2850

New FTDN March/Marzo 2019 (FWH 19.03)

... not linked the internal functions are used to draw the barcode and when the specified code is not supported defauls to code128. * XBrowse: - Fix: Autosort: Clicking second time on a sorted column is not switching between ascending and descending order in case of DBF and TDatabase. Fixed now. - ...
by Antonio Linares
Mon Apr 08, 2019 11:20 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN March/Marzo 2019 (FWH 19.03)
Replies: 2
Views: 2850

Re: sort an array on line

First sort the array

ASort( aTemp, , , { |x,y| x[ 8 ] < y[ 8 ] } )

Then build the XBrowse and do not use AUTOSORT.
by nageswaragunupudi
Thu Jan 10, 2019 5:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: sort an array on line Resolved!!
Replies: 9
Views: 1838

Re: sort an array on line

Create xbrowse with AUTOSORT clause and click on the last header.
by nageswaragunupudi
Thu Jan 10, 2019 12:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: sort an array on line Resolved!!
Replies: 9
Views: 1838

Re: Defining xBrowse COLUMNS for array of hashes

Please implement Autosort and Incremental seek with this code   REDEFINE XBROWSE oBrw id 111 of oDlg                    ;   COLUMNS "select", "receipt", "date", "name", "amount"   ...
by nageswaragunupudi
Sun Dec 09, 2018 1:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Defining xBrowse COLUMNS for array of hashes
Replies: 10
Views: 1972

Re: Defining xBrowse COLUMNS for array of hashes

What are your requirements?
Autosort only?
by nageswaragunupudi
Sat Dec 08, 2018 8:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Defining xBrowse COLUMNS for array of hashes
Replies: 10
Views: 1972
PreviousNext

Return to advanced search