Search found 74 matches: ordkeygoto

Return to advanced search

Re: Position in ADO Recordset

Jimmy,

Equivalents:
    Found() --> .not. oRs:Eof()
    RecNo() --> oRs:BookMark
    DbGoTo( n ) --> oRs:BookMark := n
    OrdKeyNo() --> oRs:AbsolutePosition
    OrdKeyGoTo( x ) --> oRs:AbsolutePosition := x
Regards,
by Cgallegoa
Sun Jun 11, 2023 1:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Position in ADO Recordset
Replies: 3
Views: 238

Re: XBrowse con xBase - Efecto Pijama - Error en Red

... DBINFO( DBI_FULLPATH ) ) ) * DEFAULT ::bKeyNo := { |n| ( ::cAlias )->( If( n == nil, OrdKeyRelPos() * ::nLen, ; * If( Empty( OrdSetFocus() ), OrdKeyGoTo( n ), OrdKeyRelPos( n / ::nLen ) ) ) ) } * else ::lRelyOnKeyNo := If( Set( _SET_DELETED ), "DELETED()" $ Upper( DbFilter() ), .t. ...
by José
Tue Mar 21, 2023 2:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse con xBase - Efecto Pijama - Error en Red
Replies: 3
Views: 405

Harbour y MySQL - tildes y eñes

... set confirm off set wrap on set date french set date format 'dd/mm/yyyy' set century on Request DBFCDX, DBFFPT, OrdCreate, OrdKeyCount, OrdKeyNo, OrdKeyGoto RddSetDefault( 'DBFCDX') set deleted on set autopen off set exclusive on Set optimize on cursorwait() readinsert( .t. ) SetBalloon( .T. ) ...
by José
Tue Nov 23, 2021 4:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Harbour y MySQL - tildes y eñes
Replies: 14
Views: 1656

Re: TsBrowse(320) Warning W0001 Ambiguous reference 'SUPER'

... DbSkipper #EndIf #ifdef __HARBOUR__ #xtranslate _DbSkipper => DbSkipper #ifdef __HBOLE__ #define __OLE__ #EndIf EXTERN OrdKeyNo, OrdKeyCount, OrdKeyGoto #EndIf
by noe aburto
Wed Aug 26, 2020 12:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TsBrowse(320) Warning W0001 Ambiguous reference 'SUPER'
Replies: 4
Views: 529

Re: xBrowse and SQLRDD bug

... user drags the scrollbar to say 3/9th position on the scrollbar, then xbrowse will move the record position to the 3rd record from the top using OrdKeyGoTo(). Using this example, please advise us how should xbrowse ascertain 1) The total number of records visible in the DBF 2) What is the serial ...
by nageswaragunupudi
Wed Apr 29, 2020 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse and SQLRDD bug
Replies: 18
Views: 2415

Re: Latest FWH upgrade, performance issues, larger EXE

... Some points to be kept in mind: XBrowse mostly depends on the RDD functions OrdKeyCount(), OrdKeyNo() and OrdKeyGoTo(), which in turn depend on the indexes. So, very large index files, large index key values to some extent impede the performance of xbrowse ...
by nageswaragunupudi
Sun Jul 15, 2018 1:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Latest FWH upgrade, performance issues, larger EXE
Replies: 27
Views: 4987

strange error on index with ftp

I have a strange error making index with dbf and ftp on main.prg I set REQUEST DBFCDX REQUEST DBFFPT EXTERNAL ORDKEYNO,ORDKEYCOUNT,ORDCREATE,ORDKEYGOTO FUNCTION Main() PUBLIC oApp RddSetDefault( "DBFCDX" ) SetHandleCount( 100 ) SET DATE FORMAT "dd-mm-yyyy" SET DELETED ON ...
by Silvio.Falconi
Thu Mar 22, 2018 7:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: strange error on index with ftp
Replies: 5
Views: 832

Re: Rowset data and method is not working.

... // like ADO Moves to record whose record number is nRecNo. If the record with nRecNo is deleted, record pointer is not moved. KeyGoTo( nKeyNo ) OrdKeyGoTo( nKeyNo ) // like DBF AbsolutePosition := nKeyNo // like ADO Moves to the nKeyNo position in the apparent sorted order ignoring records filtered ...
by nageswaragunupudi
Mon Feb 06, 2017 12:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rowset data and method is not working.
Replies: 2
Views: 806

Re: ADORDD FAQs

Thank´s James

after thinking a lot, put this information in the main.prg and oh yes right gave the upload.

REQUEST DBFNTX
REQUEST DBFDBT

REQUEST DBFCDX
REQUEST DBFFPT

REQUEST ORDKEYNO
REQUEST ORDKEYCOUNT
REQUEST ORDKEYGOTO

REQUEST DESCEND

thank you for your attention
by aferra
Fri Jul 29, 2016 2:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADORDD FAQs
Replies: 87
Views: 19600

Re: FWH: MySql/MariaDB: RowSet object

... MovePrevious(), Move( n ) Work similar to DBF and RecordSet, navigating in the sorted order, respecting filters. OrdKeyCount(), OrdKeyNo(), OrdKeyGoTo( nKeyNo ) KeyCount(), KeyNo(), KeyGoTo( nKeyNo ) RecordCount(), AbsoutePosition, AbsolutePosition := n All these methods work exactly the ...
by nageswaragunupudi
Thu Jul 21, 2016 11:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: MySql/MariaDB: RowSet object
Replies: 51
Views: 19550

Re: lentitud tremenda en red

... como un tiro en RED!! Mi configuración en el PRG principal es: REQUEST DBFCDX RddSetDefault("DBFCDX") REQUEST OrdKeyNo, OrdKeyCount, OrdKeyGoto REQUEST ADS,ADSKEYCOUNT,ADSGETRELKEYPOS,ADSKEYNO,ADSSetRelKeyPos,rddsys RDDREGISTER("ADS",1) SET SERVER LOCAL AdsSetFileType( ADS_CDX ...
by Loren
Thu Mar 10, 2016 7:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: lentitud tremenda en red
Replies: 20
Views: 5376

Re: More 16.01 problems with xBrowse UPDATED

... I set filter to "!DELETED()". I always use this and recommend this even for DBFCDX. Using this results in OrdKeyCount(), OrdKeyNo() and OrdKeyGoTo() work very accurately. Now if and when you have time, I request you to: 1) You said you were having problem with a particular dbf. Please ...
by nageswaragunupudi
Wed Mar 02, 2016 4:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: More 16.01 problems with xBrowse UPDATED
Replies: 24
Views: 9526

Re: More 16.01 problems with xBrowse UPDATED

... Browses viz TWBrowse, TCBrowse and TXBrowse. Out of the three, TXBrowse heavily depends on the RDD supporting OrdKeyCount(), OrdKeyNo() and OrdKeyGoTo(). TXBrowse's navigation works fully as expected when the RDD properly supports these three functions. (Note: For accurate working, we also ...
by nageswaragunupudi
Sun Feb 28, 2016 8:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: More 16.01 problems with xBrowse UPDATED
Replies: 24
Views: 9526

New FTDN November/Noviembre 2015 (FWH 15.11)

... sort status of the combobox items. * RDDADS related workarounds in xbrowse.prg and database.prg: It is noticed that when OrdSetFocus() is empty, OrdKeyGoTo() errors out in Harbour version of RDDADS. While the function does not error out in xHarbour version, the function does not work when OrdSetFocus() ...
by Antonio Linares
Sat Dec 26, 2015 9:26 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre 2015 (FWH 15.11)
Replies: 5
Views: 2748

Re: Nuevo ADORDD

... extract field len to build a find, filter or query expression because the eval result its the sum of all the numeric fields in the expression. 6) ORDKEYGOTO was not full implemented.
by AHF
Mon Dec 07, 2015 12:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo ADORDD
Replies: 55
Views: 16560
Next

Return to advanced search