Search found 52 matches: autopen

Return to advanced search

Re: Error XBROWSE SEEK (while no Index) after change RDD

YES, i have try to SET bSeek to NIL

my "Problem" was that i have many DBF which work with *.NTX which does not "Autopen" Index

Does not matter.
It is not a good idea to disturb XBrowse's internal defaults.
The default bSeek does not harm you when you are browsing DBFNTX dbfs.
by nageswaragunupudi
Mon May 08, 2023 1:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error XBROWSE SEEK (while no Index) after change RDD
Replies: 9
Views: 591

Re: Error XBROWSE SEEK (while no Index) after change RDD

... bSeek returns .F. YES, i have try to SET bSeek to NIL my "Problem" was that i have many DBF which work with *.NTX which does not "Autopen" Index
by Jimmy
Mon May 08, 2023 12:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error XBROWSE SEEK (while no Index) after change RDD
Replies: 9
Views: 591

Harbour y MySQL - tildes y eñes

... '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. ) setresdebug( .F. ) clear all FwSetLanguage( 2 ) Request ...
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: 1697

Re: create a function with Tdatabase

Sivio, Maybe you didn't know that CDXs have always had the option to open all the indexes automatically when the DBF is opened. And as I understand it, NTXs can now do that also. REQUEST DBFCDX rddsetdefault( "DBFCDX" ) SET EXCLUSIVE OFF SET(_SET_AUTOPEN, .T. ) yes I knew it but it happen...
by Silvio.Falconi
Thu Apr 29, 2021 8:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: create a function with Tdatabase
Replies: 7
Views: 1183

Re: create a function with Tdatabase

Sivio,

Maybe you didn't know that CDXs have always had the option to open all the indexes automatically when the DBF is opened. And as I understand it, NTXs can now do that also.

REQUEST DBFCDX
rddsetdefault( "DBFCDX" )
SET EXCLUSIVE OFF
SET(_SET_AUTOPEN, .T. )
by James Bott
Wed Apr 28, 2021 5:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: create a function with Tdatabase
Replies: 7
Views: 1183

how create error.log in FWH

... Area ......:1 -------------------------- Environmental Information -------------------------- SET ALTERNATE......: OFF SET ALTFILE........: SET AUTOPEN........: ON SET AUTORDER.......: 0 SET AUTOSHARE......: 0 SET BACKGROUNDTASKS: OFF SET BACKGROUNDTICK.: 1000 SET BELL...........: OFF SET BLINK..........: ...
by kajot
Wed Dec 14, 2016 4:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how create error.log in FWH
Replies: 10
Views: 2699

Re: ADORDD FAQs

... TEMPORAY NAMES INDEX LIST TO {"TMP","TEMP"} // SET ADO FIELDRECNO TABLES LIST TO {{"EMPRESA","ID"}} // SET AUTOPEN OFF // SET ADO FORCE LOCK OFF SET ADO DEFAULT DATABASE TO "EMPRE01" SERVER TO "localhost" ENGINE TO "MYSQL" USER ...
by gautxori
Wed Apr 13, 2016 4:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADORDD FAQs
Replies: 87
Views: 19713

Re: ADO RDD xHarbour

Gunther, USE cTable SET INDEX TO index1,index2,index3 Order focus should be index1. If SET AUTOPEN ON the order focus will be on the first index in the SET ADODBF.. You should only use INDEX ON for temporary indexes as permanent ones should be indicated on SET ADODBF ...
by AHF
Thu Nov 19, 2015 9:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 448204

Re: ADO RDD xHarbour

... autoopen on always the ADBODBF INDEX its added first to the order list when you open the table. If INDEX ON is after it will be added after. If autopen off index on will be added first if you not did explicitly set index to the index in ADODBF INDEX. If you found other behavior this is not the ...
by AHF
Fri Oct 30, 2015 7:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 448204

Re: ADO RDD xHarbour

... ,; {"TEST2", "LAST"} ,; {"TEST3", "AGE"} }} SET ADO DEFAULT RECNO FIELD TO "ID" SET AUTOPEN ON //might be OFF if you wish SET AUTORDER TO 1 // first index opened can be other SET ADO DEFAULT DATABASE TO "TEST2.mdb" ENGINE ...
by elvira
Tue May 05, 2015 1:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 448204

Re: ADO RDD xHarbour

... ,; {"TEST2", "LAST"} ,; {"TEST3", "AGE"} }} SET ADO DEFAULT RECNO FIELD TO "HBRECNO" SET AUTOPEN ON //might be OFF if you wish SET AUTORDER TO 1 // first index opened can be other SET ADO DEFAULT DATABASE TO "TEST2.mdb" ENGINE ...
by elvira
Tue May 05, 2015 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 448204

Re: ADO RDD xHarbour

Next, I SET AUTOPEN OFF: Error description: Error BASE/1075 Argument error: > Args: [ 1] = N 1 [ 2] = C Stack Calls =========== Called from: .\source\classes\DATABASE.PRG => ORDERTAGINFO( 1258 ) Called from: .\source\classes\XBROWSE.PRG ...
by lucasdebeltran
Thu Apr 09, 2015 6:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 448204

Re: ADO RDD xHarbour

... be present. It is working. Define at FUNCTION ListIndex() the indexes. They will be opened with SET INDEX TO INDEX1, INDEX2, INDEX3... if SET AUTOPEN is OFF. AUTO OPEN and SET AUTOORDER should be working. Define globally with a SetUp ADORDD function the RBDM type (Access, MSSQL, MySQL..), ...
by AHF
Thu Apr 09, 2015 10:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 448204

Re: ADO RDD xHarbour

... only do two little changes : Define at FUNCTION ListIndex() the indexes. They will be opened with SET INDEX TO INDEX1, INDEX2, INDEX3... if SET AUTOPEN is OFF. Define globally with a SetUp ADORDD function the RBDM type (Access, MSSQL, MySQL..), the server, the user name, the password to connect ...
by lucasdebeltran
Thu Apr 09, 2015 10:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 448204
Next

Return to advanced search