Search found 72 matches: ascending

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: 1651

New FTDN July/Julio (FWH 23.07)

... * LinkList: Method Sort( [lAsc], [lRecurse], [nCol] ) enhanced with three new parameters. Param.1 lAsc: .T. or "A" for ascending sort and .F. OR "D" for descending sort. Or, this parameter can be a codeblock also. Default: Ascending sort Param.2 lRecurse: Default ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1062

Re: XBROWSE Column Question

... is ON, XBrowse automatically sorts the data on click of header, using the value in oCol:cSortOrder. First click on the header sorts the data in ascending order. Second click on the header sorts the data in descending order. In case of DBF, it uses the RDD function OrdDescend() If oCol:cSortOrder ...
by Jimmy
Wed May 10, 2023 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 868

Re: XBROWSE Column Question

... is ON, XBrowse automatically sorts the data on click of header, using the value in oCol:cSortOrder. First click on the header sorts the data in ascending order. Second click on the header sorts the data in descending order. In case of DBF, it uses the RDD function OrdDescend() If oCol:cSortOrder ...
by nageswaragunupudi
Wed May 10, 2023 12:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 868

New FTDN December/Diciembre 2022 (FW 22.12)

... is performed on multiple columns. For descending order, specify the column number as negative number. Eg: ASort( aArray,,{ 2, -4, 5 } ) Performs ascending sort of column 2 and where column 2 is equal, descending sort on column 4 and so on. * TGraph: - Fix: Runtime error when printing PIE graph ...
by Antonio Linares
Tue Jan 03, 2023 7:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2022 (FW 22.12)
Replies: 5
Views: 1226

Re: Txbrowse Column Sort Indicator

Set the sorted column's data cOrder := "A" or "D" depending on Ascending or Descending sort and then calll RefreshHeaders

Code: Select all  Expand view
oBrw:cOrders := ""
oCol:cOrder := "A"
oBrw:RefreshHeaders()
by nageswaragunupudi
Fri Nov 18, 2022 3:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Txbrowse Column Sort Indicator
Replies: 9
Views: 826

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: 534

Re: Bug in Harbour Descend()

No, as I want to sort for the second item descending and the first item ascending. Anyway, it doesn't work either.

EMG
by Enrico Maria Giordano
Mon Apr 12, 2021 2:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in Harbour Descend()
Replies: 34
Views: 1686

Re: Ordenar solo una parte de un array

... Number of elements starting from <nStart> to sort, default is all elements. <bSort> Code block for sorting order, default is ascending order {| x, y | x < y }. The code block should accept two parameters and must return .T. if the sort is in order, .F. if not.
by hmpaquito
Thu Feb 25, 2021 9:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ordenar solo una parte de un array
Replies: 2
Views: 236

Re: En RED Local generar un indice CDX en PC Local

... ; [ALL] ; [NEXT <nNumber>] ; [RECORD <nRecNo>] ; [REST] ; [EVAL <bBlock>] ; [EVERY <nInterval>] ; [UNIQUE] ; [ASCENDING|DESCENDING] ; [USECURRENT] ; [ADDITIVE] ; [CUSTOM] ; [NOOPTIMIZE] ; [TEMPORARY] ; [USEFILTER] ; [EXCLUSIVE]
by carlos vargas
Wed Sep 02, 2020 5:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: En RED Local generar un indice CDX en PC Local
Replies: 1
Views: 286

Re: Nuevas funciones harbour para tablas dbf

... ; [ALL] ; [NEXT <nNumber>] ; [RECORD <nRecNo>] ; [REST] ; [EVAL <bBlock>] ; [EVERY <nInterval>] ; [UNIQUE] ; [ASCENDING|DESCENDING] ; [USECURRENT] ; [ADDITIVE] ; [CUSTOM] ; [NOOPTIMIZE] ; [TEMPORARY] ; [USEFILTER] ; [EXCLUSIVE] como puede ver hay una clausula ...
by carlos vargas
Fri Aug 23, 2019 6:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevas funciones harbour para tablas dbf
Replies: 10
Views: 1356

Re: to Nages: test for tdatabase

... This approach has the same cons as discussed above, i.e., the IDs generated may not be ascending the chronological order and some IDs in the serial may be missing. However, the fields RowID (autoincrement), CreateDt, UpdateDt, which are ...
by Silvio.Falconi
Sat May 11, 2019 1:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5681

Re: to Nages: test for tdatabase

... This approach has the same cons as discussed above, i.e., the IDs generated may not be ascending the chronological order and some IDs in the serial may be missing. However, the fields RowID (autoincrement), CreateDt, UpdateDt, which are ...
by nageswaragunupudi
Tue Apr 30, 2019 12:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5681

Re: to Nages: test for tdatabase

Dear Friend Silvio The inherent problem in this approach is that the IDs are not chronologically in ascending order and there can be gaps in the serial order. In case of invoices, invoice numbers not being in serial order would be highly objectionable. Some programmer friends ...
by Silvio.Falconi
Sat Apr 27, 2019 8:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5681

Re: to Nages: test for tdatabase

Dear Friend Silvio The inherent problem in this approach is that the IDs are not chronologically in ascending order and there can be gaps in the serial order. In case of invoices, invoice numbers not being in serial order would be highly objectionable. Some programmer friends ...
by nageswaragunupudi
Sat Apr 27, 2019 1:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: to Nages: test for tdatabase
Replies: 37
Views: 5681
Next

Return to advanced search