Search found 238 matches: ordsetfocus

Return to advanced search

Re: ADO RDD xHarbour

Antonio, Thanks. Resent the email. Now it works fine with Browse() and OrdSetFocus(), but not with xBrowse(). With xBrowse() I get: Error description: Error BASE/1074 Error de argumento: <= Args: [ 1] = C LIBROS1 [ 2] = N 2 Stack Calls =========== Called ...
by lucasdebeltran
Fri Apr 03, 2015 9:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 449634

Re: ADO RDD xHarbour

Antonio, No, I didn´t use SET INDEX. Now it Work: SET INDEX TO LUCAS1, LUCAS2 But there is a bug at OrdSetFocus(). It returns numbers, but it should return the tag name, i.e. LUCAS2. For example: LUCAS->(  OrdSetFocus("MYLUCASBIS")  )Alert(OrdSetFocus()) ...
by lucasdebeltran
Fri Apr 03, 2015 7:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 449634

Re: ADO RDD xHarbour

Lucas,

Did you open the indexes with set index to or ordlistadd.

They are not opened with the table by adordd

They must be opened before ordsetfocus gets called
This is not the normal procedure with ordsetfocus that does nothing if the index

Its a guess
by AHF
Thu Apr 02, 2015 8:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 449634

Re: ADO RDD xHarbour

Lucas, No, I haven´t tried indexes already, as to fully test a complete application I need LOCATE FOR, DbSeek(), SET FILTER and OrdSetFocus() to be working, and I think they are not ready yet. All should be working (check index array) but Ill post in the next hour a new version of adordd ...
by AHF
Thu Apr 02, 2015 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 449634

Re: ADO RDD xHarbour

... and all went perfect. No, I haven´t tried indexes already, as to fully test a complete application I need LOCATE FOR, DbSeek(), SET FILTER and OrdSetFocus() to be working, and I think they are not ready yet. Thank you for your work. Now with latest changes I could issue xBrowse(), but if I ...
by lucasdebeltran
Thu Apr 02, 2015 4:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 449634

Re: ADO RDD xHarbour

Hello,

I would like to test with indexes, because that was the only lack in adordd.prg provided within Harbour.

I also use ordsetfocus(), i e:

Code: Select all  Expand view
CLIENTES->(  OrdSetFocus("CLIENTES1")  )


Thank you.
by lucasdebeltran
Mon Mar 30, 2015 11:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 449634

Re: ADO RDD xHarbour

... its up to DB admin. By ordlistadd or createindex it would add to some array in the adordd the name of the indexes attached to that workarea. By ordsetfocus() the code simply asks for new recordset replacing the one in the same work area using SELECT …. ORDER BY…. The ORDER BY is extracted and ...
by AHF
Wed Mar 18, 2015 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 449634

Re: ADO RDD xHarbour

... Shall I supply always path name in the fie string? With indexes the same? Besides this I notice there are missing some traditional RDD functions: OrdSetFocus() Recno() How do we implement Recno() in traditional SQLdatabases? Can I creat it like this: aMyFunc[ UR_ORDSETFOCUS ] := ( @ADO_ORDSETFOCUS() ...
by AHF
Sat Feb 28, 2015 11:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 449634

Resuelto con índice temporal

... if ! OpenDbf("CLIENTES", {"CLIENTES"}, (fFile1 := GetNewAlias()), .T.) ; return NIL ; end if (fFile1)->(ordSetFocus("NOMBRE")) *--------------------------------------------------------------------------- DEFINE DIALOG oDlg RESOURCE "DLG_BUSQUEDA" ...
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: 1209

Re: No me deja crear un index en ADS via Internet.

... = PROD_CON.ID_PROD" AdsExecuteSqlDirect(cQuery) Index On STRZERO(ID_PROD,5) TAG "ID" TO (cAlias) Select(cAlias) (cAlias)->(OrdSetFocus("ID")) (cAlias)->(dbGoTop()) Repito, en una conexion de area Local, sin problemas, pero via Internet en el Index On me genera ...
by Giovany Vecchi
Mon Aug 18, 2014 6:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: No me deja crear un index en ADS via Internet.
Replies: 4
Views: 669

Re: No me deja crear un index en ADS via Internet.

... = PROD_CON.ID_PROD" AdsExecuteSqlDirect(cQuery) Index On STRZERO(ID_PROD,5) TAG "ID" TO (cAlias) Select(cAlias) (cAlias)->(OrdSetFocus("ID")) (cAlias)->(dbGoTop()) Repito, en una conexion de area Local, sin problemas, pero via Internet en el Index On me genera ...
by Alex.Salas
Mon Aug 18, 2014 5:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: No me deja crear un index en ADS via Internet.
Replies: 4
Views: 669

Re: xBrowse + OO Array

... ) 7) KeyNo() 8 ) KeyGoTo( nKey ) 9) KeyCount() 10) RecCount() 11) SetOrder( cColumnName ) --> Oldorder name // This should exactly work like OrdSetFocus() Most important method: 12) Skipper( n ) --> nSkipped Compulosry DATA Actually optional, but you can not use columns clause without ...
by nageswaragunupudi
Fri Jun 06, 2014 4:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + OO Array
Replies: 16
Views: 4807

Re: BORRAR INDICES TEMPORALES

Solo permite un índice temporal

Cómo se haría esto SET ORDER TO TAG NOMTMP IN CDXTMP con OrdSetFocus("NOMTMP")

Gracias.

Saludos,

Adhemar
by acuellar
Fri May 09, 2014 5:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: BORRAR INDICES TEMPORALES
Replies: 5
Views: 706

XBROWSE NO ABRE DBFS CORRECTAMENTE

... ; DIALOGS "ACTMOV", "ACTMOV" //---- Dialogo 1 -----// dbSelectArea("GUIINGAL") GUIINGAL->(OrdSetFocus("GUIINGA1")) REDEFINE XBROWSE oLbx ; FIELDS DTOC(GUIINGAL->GUIFEC),; Oemtoansi(GUIINGAL->DOC),; Oemtoansi(GUIINGAL->SERIE),; ...
by Luis
Fri Nov 15, 2013 4:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE NO ABRE DBFS CORRECTAMENTE
Replies: 1
Views: 1252

XBROWSE BUSQUEDA INCREMENTAL

... su opcion") OF oWnd DEFINE DIALOG oDlg RESOURCE "Mantenimientos2" OF oWnd FONT oFont dbSelectArea("MAEREP") MAEREP->(OrdSetFocus("MAEREP1")) REDEFINE XBROWSE oLbx ; FIELDS MAEREP->Codgru,; Oemtoansi(MAEREP->Grudes),; TRANSFORM(MAEREP->Codigo,"@R ...
by Luis
Thu Sep 05, 2013 2:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE BUSQUEDA INCREMENTAL
Replies: 6
Views: 3097
PreviousNext

Return to advanced search