Search found 759 matches: sort

Return to advanced search

Re: xbrowser, setorder DESC

If we use AUTOSORT clause while defining XBrowse, when the user clicks on a header, it automatically toggles sort ascending and descending.
by nageswaragunupudi
Mon Mar 11, 2024 6:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser, setorder DESC
Replies: 8
Views: 260

DBF editor

... database structure and then a dialog is automatically generated. On the right, there is an area where you can drag and drop the input fields and sort them. You can then create a customized input dialog. Best regards, Otto https://mybergland.com/fwforum/dbf_editor.gif
by Otto
Tue Feb 20, 2024 4:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF editor
Replies: 2
Views: 202

tiny11 core for ARM64

... If you are interested, you can download tiny11, the essential Windows 11, from https://archive.org/search?query=creator%3A%22NTDEV%22&sort=-addeddate UPDATE NOVEMBER 2023 – tiny11 2311 WINDOWS BASED RELEASED 23H2 The system has been updated to Windows 11 version 23H2. Windows 11 version ...
by Silvio.Falconi
Thu Jan 18, 2024 10:23 am
 
Forum: FiveWin for Pocket PC
Topic: tiny11 core for ARM64
Replies: 0
Views: 553

Re: xbrowser no muestra el scroll

Modifica esta línea:

CONTROL "", 112, "ListBox", LBS_SORT|LBS_NOTIFY|WS_VSCROLL|WS_TABSTOP, 28, 131, 323, 159

asi:

CONTROL "", 112, "TXBrowse", WS_VSCROLL|WS_TABSTOP, 28, 131, 323, 159
by Antonio Linares
Wed Dec 13, 2023 10:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser no muestra el scroll
Replies: 7
Views: 491

Re: Classe TGif

... be seven bytes long and contain the following fields: logical screen width, logical screen height, global color table flag, color resolution, sort flag, size of global color table, background color index, and pixel aspect ratio It should have a global color table that contains the colors used ...
by Antonio Linares
Fri Dec 08, 2023 8:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Classe TGif
Replies: 9
Views: 1251

Bug in BCC64

... );    printf( "%d\n", *TEST );    return 0;} prints the correct answer that is: ðÉ-48 I tried all sort of switches but nothing worked. Any ideas? Even a workaroud would be much appreciated.
by Enrico Maria Giordano
Wed Nov 01, 2023 2:41 pm
 
Forum: Off Topic / Otros temas
Topic: Bug in BCC64
Replies: 0
Views: 305

XBrowse error with oRs:sort

Hello RAO if I use sort as in the attached example (adoxbr01.prg ) static function BrowseTable()   local oRs, oBrw, oFont, oDlg   oRs   := FW_OpenRecordSet( oCn, "CUSTSMAL" )             oRs:Sort :=  'CUSTNAME,AGE' ...
by Maurizio
Tue Sep 26, 2023 2:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse error with oRs:sort
Replies: 0
Views: 243

FW 23.07 Xbrowse, oCol:Cargo is NIL

I use oCol:Cargo to save some parameters.
Since FW 23.07 it does not work anymore, maybe due to:
LinkList: Method Sort( [lAsc], [lRecurse], [nCol] ) enhanced with
three new parameters.
Param.3 nCol: Default 0: Sorts on nCol of Cargo Array

How can I find a workaround?
Suggestions are welcome.
by frose
Sun Sep 10, 2023 8:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW 23.07 Xbrowse, oCol:Cargo is NIL
Replies: 4
Views: 232

Re: need Help with oBro:bSeek

... of Column ? XBrowse automatically does all this for us. XBrowse searches all open indexes/tags and identifies which index/tag is to be used to sort on which column and stores the index/tag information in oCol:cSortOrder. When the header is clicked, xbrowse automatically sets the index tag to ...
by nageswaragunupudi
Wed Aug 16, 2023 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: need Help with oBro:bSeek
Replies: 3
Views: 205

Re: Error in FW_ArrayAsRecordSet Seek - Please help

Except 'index' and 'seek' everything else like Sort, Find, Filter work. Please tru this small sample   USE CUSTOMER   oRs   := FW_ArrayAsRecordSet( FW_DbfToArray(), DBSTRUCT() )   xbrowser oRs ...
by nageswaragunupudi
Wed Aug 09, 2023 7:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error in FW_ArrayAsRecordSet Seek - Please help
Replies: 6
Views: 340

Re: New FTDN July/Julio (FWH 23.07)

... * Mejora: La clase TListView es compatible con Unicode. Prueba el ejemplo: samples\testvie1.prg * Clase LinkList: Se ha mejorado el método Sort( [lAsc], [lRecurse], [nCol] ) con tres nuevos parámetros: 1.- lAsc: .T. o "A" para ordenación ascendente y .F. o "D" para ordenación ...
by Antonio Linares
Sat Jul 29, 2023 9:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 938

New FTDN July/Julio (FWH 23.07)

... samples\webview.prg and webvieweval.prg * Enhancement: TListView class is now made Unicode compatible Try samples\testvie1.prg * LinkList: Method Sort( [lAsc], [lRecurse], [nCol] ) enhanced with three new parameters. Param.1 lAsc: .T. or "A" for ascending sort and .F. OR "D" ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 938

Re: pudieron avanzar en ordenacion de un tree?

First, you need to modify the fwh program fwh\source\classes\linklist.prg In this program please replace the existing METHOD Sort() with this revised new method: METHOD Sort( lAsc, lRecurs ) CLASS TLinkList   local oPrev, oNext, n, aItems := {}   local oItem   local ...
by nageswaragunupudi
Tue Jul 11, 2023 1:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: pudieron avanzar en ordenacion de un tree?
Replies: 11
Views: 652

Re: Position in ADO Recordset

... oRs:AbsolutePosition --> is like OrdKeyNo() of DBF After reading a recordset, both point to the same record. After reading a recordset, we can sort the recordset in memory by oRs:Sort := cFieldName After sorting, oRs:BookMark points to the record number in the original order as read where as ...
by nageswaragunupudi
Sun Jun 11, 2023 1:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Position in ADO Recordset
Replies: 3
Views: 204

Re: XBROWSE Column Question

hi, oBrw:lAutoSort := .t.  // default .f. to invoke autosort feature. We can also use AUTOSORT clause in the XBROWSE command, which sets the flag. WOW, that is nice :D When autosort flag is ON, XBrowse automatically sorts the data on click of header, ...
by Jimmy
Wed May 10, 2023 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 857
Next

Return to advanced search