Search found 66 matches: ordcreate

Return to advanced search

Re: ADO RDD xHarbour

Antonio, Check the functions for each task that you mention. There you will see where the indexes, etc. are placed: i.e. in ADO_ORDCREATE()      IF aWAData[ WA_CATALOG ]:Tables( aWAData[ WA_TABLENAME ] ):Indexes == NIL .OR. ! lFound        &...
by Antonio Linares
Wed Mar 18, 2015 4:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 447024

ADS Encrypted File Indexing

... " records" ( ::cAlias )->( ORDCONDSET( cFor, cFor2,,,, nInterval, ( ::cAlias )->( RECNO() ),,,, lAscending ) ) ( ::cAlias )->( ORDCREATE(, ( cTag ), cKey, { || &cKey }, ) ) RETURN nil and the error I receive is: Error description: Error ADSCDX/5089 The operation is not valid ...
by TimStone
Mon Mar 09, 2015 11:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Encrypted File Indexing
Replies: 1
Views: 604

Re: Converting an old Clipper app

... open the file std.ch from [x]Harbour include directory and search for INDEX ON and you will find that INDEX ON.... is split into ordCondSet() and ordCreate() function calls. With the first call you can specify filters and also the callback function. It seems to me that the progress bar is 50 chars ...
by mercurial
Wed Feb 04, 2015 6:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Converting an old Clipper app
Replies: 3
Views: 744

Re: Buscar números

Anda, anda Manolillo!!! anda que a estas alturas!!! Usa StrZero(<nNúmero>) --> cNúmero Y lo debes aplicar así ( dbfFacCliT )->( ordCreate( cPath + "FACCLIP.CDX", "nImporte", "nImporte", {|| StrZero( Field->nImporte ) }, ) ) Para buscar lo mismo: dbSeek( ...
by xmanuel
Wed Nov 19, 2014 7:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Buscar números
Replies: 9
Views: 1193

Re: Buscar números

... "Importe",; ( dbfFacCliT )->( ordCondSet( "!Deleted()", {|| !Deleted() }, , , , , , , , , , , .t. ) ) ( dbfFacCliT )->( ordCreate( cPath + "FACCLIP.CDX", "nImporte", "nImporte", {|| Field->nImporte }, ) ) Saludos
by manuelcalerosolis
Wed Nov 19, 2014 5:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Buscar números
Replies: 9
Views: 1193

Resuelto con índice temporal

... (fFile1)->NOMBRE) > 0", {|| at(rtrim(cCadena), (fFile1)->NOMBRE) > 0},,,,, RECNO(),,,,)),; (fFile1)->(ordCreate(, "FILTRO", "(fFile1)->NOMBRE", {|| (fFile1)->NOMBRE},)),; (fFile1)->(ordSetFocus("FILTRO")),; (fFile1)->(dbGoTop()),; ...
by fernandomoralesdr
Wed Sep 24, 2014 8:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta: xBrowse: ¿es posible ocultar filas según condición
Replies: 7
Views: 1193

DBF- Compare / Setrelation / Index => Rel. 1.1 Download

... : http://www.pflegeplus.com/fw_downloads/Dbfcomp1.zip tested : Relations normal and selective Index progressbar using ORDCONDSET( ..., ORDCREATE(.... Compare 2 DBF's using relations Cell-color of relation-result Xbrowse-footer show sum / results of relations deleting records using compare ...
by ukoenig
Thu Feb 06, 2014 6:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF- Compare / Setrelation / Index => Rel. 1.1 Download
Replies: 1
Views: 674

Re: Index-build using ORDCREATE(... with progressbar ?

Enrico, I only found the function < IndexBuilder() > in DBU. I could try to use the logic from there. I want to include it in my new RELATION-test, Im' still working on, to include the Index-PROGRESSBAR. Footer total on NORMAL relation http://www.pflegeplus.com/pictures/total2....
by ukoenig
Sat Feb 01, 2014 9:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Index-build using ORDCREATE(... with progressbar ?
Replies: 3
Views: 652

Re: Index-build using ORDCREATE(... with progressbar ?

Uwe,

ukoenig wrote:Hello,

is it possible to add a PROGRESSBAR, building a index with ORDCREATE ?


Yes, you have to use OrdCondSet() function.

EMG
by Enrico Maria Giordano
Sat Feb 01, 2014 7:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Index-build using ORDCREATE(... with progressbar ?
Replies: 3
Views: 652

Index-build using ORDCREATE(... with progressbar ?

Hello, is it possible to add a PROGRESSBAR, building a index with ORDCREATE ? ORDCREATE builds just ONE index < CUST.cdx > with embedded CUST1, CUST2 and CUST3 DBSELECTAREA("CUST") ORDCREATE( ,"CUST1","CUST_NO", {|| CUST_NO ...
by ukoenig
Sat Feb 01, 2014 3:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Index-build using ORDCREATE(... with progressbar ?
Replies: 3
Views: 652

Re: ADS Local and Index

... ordCondSet( 'mv_status < "F"', {|| mv_status < "F"},,,,, RECNO(),,,,,, .T.,,,,,,, ) then the actual indexing is started ordCreate( ( ::cCurDir+cData ), ( "statactive" ), "ld_num+mv_no", {|| ld_num+mv_no},,, ,{} )
by Gale FORd
Tue Jan 14, 2014 5:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS Local and Index
Replies: 12
Views: 1998

Re: Clase TDb o TDatabase....cual usar?

... aStruct, cDriver ) ; INLINE DbCreate( cFile, aStruct, cDriver ) METHOD CreateIndex( cFile, cTag, cKey, bKey, lUnique) INLINE ; ( ::nArea )->( OrdCreate( cFile, cTag, cKey, bKey, lUnique ) ) METHOD ClearRelation() INLINE ( ::nArea )->( DbClearRelation() ) METHOD DbCreate( aStruct ) INLINE ...
by Compuin
Thu Feb 28, 2013 6:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TDb o TDatabase....cual usar?
Replies: 10
Views: 2796

Re: ERROR DBCMD/2001 por extensión del archivo en minúsculas

Solucionado. La función que da el error DBCMD/2001 es es OrdCreate(). El código del programa con el que da error es: use MVTEQUIP new index on MATRICULA tag MATRICULA close Lo he solucionado haciendo un SELECT del archivo inmediatamente después de abrirlo: ...
by fernandomoralesdr
Wed Nov 07, 2012 5:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ERROR DBCMD/2001 por extensión del archivo en minúsculas
Replies: 2
Views: 419

Unrecoverable error 1010

... xc->(fieldput(13,time())) replace xc->pda with zpda unlock endif . . . . netuse(progpath+"imachine","xx",.T.,3) ordCreate( (progpath+"ipdainfo" ), "id", "id") ordCreate( (progpath+"ipdainfo" ), "code", "code" ...
by cllow208
Mon May 21, 2012 8:28 am
 
Forum: FiveWin for Pocket PC
Topic: Unrecoverable error 1010
Replies: 5
Views: 2877
PreviousNext

Return to advanced search