Search found 81 matches: descending

Return to advanced search

New FTDN May/Mayo 2019 (FWH 19.05)

... - Fix: When the sql query contains "order by field desc " followed by "limit", rowset object is not recognising the order as descending. Fixed. * TDataRow (FW_Record): - Fix: In case of append records, method Undo() is not restoring default values set by method SetDefault( ...
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: 3176

New FTDN March/Marzo 2019 (FWH 19.03)

... 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. - Enhancement: New data BarCodeType: When assigned with a type, eg CODE128, QRCODE, etc. will ...
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: 2836

Re: MariaDB Rowset Seek Method returns always .T.

... to .t. and returns .t.. If a match is not found, does not move the record pointer, sets oRs:lFound to .f. and returns .f.. In the case of descending order, the search is reversed. SoftSeek: oRs:Seek( uSeek, .t. ) Locates the first record from top where fieldvalue >= uSeek (case insensitive). ...
by nageswaragunupudi
Wed Oct 10, 2018 3:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB Rowset Seek Method returns always .T.
Replies: 7
Views: 1152

Re: Change sort order on browse when clicking on header

Please try this sample. Click on header toggles ascending and descending orders. That is the default behavior, if not modified in the application program. Sample code: #include "fivewin.ch"REQUEST DBFCDXfunction Main()   local ...
by nageswaragunupudi
Sat Oct 06, 2018 8:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change sort order on browse when clicking on header
Replies: 4
Views: 741

Change sort order on browse when clicking on header

How do I interchange between a descending and ascending sort order in a Xbrowse?  SELECT myfile  DATABASE oDbfG   //create temporary index  oDbfG:CreateIndex( ,"NumberD","myfile->number", ,.T.,.T.)  oDbfG:CreateIndex( ...
by ellano
Sat Oct 06, 2018 4:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change sort order on browse when clicking on header
Replies: 4
Views: 741

Re: Listbox displays incorrect data

... cText := pText oText:SetText( cText ) INDEX ON file+DTOS(date)+time TAG S1 TO &Pdd.evtx01 EVAL ( oMeter:Set( RecNo() ), SysRefresh(), ! lEnd ) DESCENDING DBCLEARINDEX() SysRefresh() CASE nIndex=2 cText := pText oText:SetText( cText ) INDEX ON file+DTOS(date)+time TAG S2 TO &Pdd.evtx01 EVAL ...
by cdmmaui
Wed Aug 01, 2018 10:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Listbox displays incorrect data
Replies: 13
Views: 2266

TDatabase FWH 17.08 : Datas and Methods

... Skip( -1 ) 66. OemToAnsi() Internal Internally used when ::lOemToAnsi is set to .T. 67. OrdDescend( cnTag, cFile, lDesc ) Toggles index order to descending/ascending 68. OrdScope( nScopeType, uValue ) Calls OrdScope() to set scope. 69. Pack() Packs the DBF, removing all deleted records. Fails ...
by nageswaragunupudi
Fri Sep 15, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase FWH 17.08 : Datas and Methods
Replies: 1
Views: 1789

Re: MySql/MariaDB Collation

...  XBROWSER aData AUTOSORTreturn nil  Click on header of column-2 to the sort order in ascending and descending. If we do not use TRWIN, Ü comes at the end and all other characters are sorted normally like English. First we need to resolve the issues ...
by nageswaragunupudi
Thu Jun 29, 2017 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySql/MariaDB Collation
Replies: 16
Views: 3475

ListView: the Revenge...

... LVS_EDITLABELS https://msdn.microsoft.com/en-us/library/windows/desktop/bb774814%28v=vs.85%29.aspx and the we can the items with in ascending abd descending order with the commands LVS_SORTASCENDING LVS_SORTDESCENDING but I not understood how Implement it
by Silvio.Falconi
Mon Jun 22, 2015 9:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ListView: the Revenge...
Replies: 1
Views: 384

Re: INDICES DESCENDENTES

Hola, creo que el problema está en que DESCEND() sólo afecta a un datos a cada vez, no a todo el índice, para ello tienes que utilizar la clausula DESCENDING: INDEX ON CAMPO_CARACTER + DTOS(CAMPO_FECHA) TO XX DESCENDING Si lo que quieres es invertir sólo el orden de la fecha, podría probar con: ...
by antolin
Wed Aug 13, 2014 7:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: INDICES DESCENDENTES
Replies: 11
Views: 1083

Re: xBrowse - Save State

Last sorted column's data cOrder is 'A' if ascending and 'D' if descending. For all other columns cOrder is empty.
You can find it by Scanning aCols.
by nageswaragunupudi
Wed Oct 09, 2013 5:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - Save State
Replies: 13
Views: 2277

Re: MySQL-query question

... `STATE`   ORDER BY SALARY DESC   ) AS SUMMARY, ( SELECT @rank := 0 ) V   ) RANKED   ORDER BY STATEID  Note: 1. Ranking is done in descending order. That is the highest value gets rank no.1. For ranking in ascending order remove "DESC" in the above query. 2. Two or more ...
by Marc Vanzegbroeck
Fri Sep 13, 2013 1:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySQL-query question
Replies: 8
Views: 2269

Re: MySQL-query question

... in our hands. For example, for ranking we can use the power of our Arrays. Copy Unique Values into an array. Sort the array in Ascending or Descending order based on our system of ranking. Once done, AScan( aArray, nValue ) --> nRank Here is a sample static function Ranking   local ...
by nageswaragunupudi
Fri Sep 13, 2013 12:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySQL-query question
Replies: 8
Views: 2269

Re: MySQL-query question

... `STATE`   ORDER BY SALARY DESC   ) AS SUMMARY, ( SELECT @rank := 0 ) V   ) RANKED   ORDER BY STATEID  Note: 1. Ranking is done in descending order. That is the highest value gets rank no.1. For ranking in ascending order remove "DESC" in the above query. 2. Two or more ...
by nageswaragunupudi
Fri Sep 13, 2013 10:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MySQL-query question
Replies: 8
Views: 2269

Re: German and Italian translations help required

... },; { "Unique", "Unico", "Unique", "Único","Eindeutig","Unico" },; { "Descending", "Descendente", "Descendant", "Descendente","Absteigend","Discendente" },; { "Memory", ...
by Massimo Linossi
Sun Sep 08, 2013 4:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: German and Italian translations help required
Replies: 5
Views: 4218
PreviousNext

Return to advanced search