Search found 37 matches: tautoget

Return to advanced search

Re: Crear ventana en una determinada posición

... la posición del diálogo y la posición del get y obtengo la posición relativa del get dentro del diálogo. Son mejoras que estoy haciendo a la clase tAutoget.
by AngelSalom
Tue Apr 28, 2020 11:05 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear ventana en una determinada posición
Replies: 4
Views: 670

Re: Definir parametros en funciones de clases

... recomendable el especificarlos para entender cada método los parámetros que precisa. > Tambien observo que ::nBottom , no pertenece a la clase TAutoget, o sea no esta definido en DATA, enconces ¿A que se variable se refiere con ::nBottom? > Cuando hacemos: CLASS TAutoGet FROM TGet las DATAs ...
by Antonio Linares
Thu Apr 18, 2019 5:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Definir parametros en funciones de clases
Replies: 1
Views: 450

Definir parametros en funciones de clases

Hola, que tal: Una pregunta sobre las clases, estoy viendo como se definen y observo que en la definicion de los metodos. Por Ejemplo en la clase TAutoget de Daniel Garcia (Hay que dar las autorias) METHOD KeyDown( nKey, nFlags ) METHOD OpenList() // Este metodo en su definicion no tiene parametros. ...
by jvtecheto
Thu Apr 18, 2019 4:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Definir parametros en funciones de clases
Replies: 1
Views: 450

Re: Autoget Error in FW May 2014 and June 2014

Maurizio,

Class TAutoGet has been developed by Daniel García Gil, I am going to ask him, thanks
by Antonio Linares
Tue Jul 15, 2014 7:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Autoget Error in FW May 2014 and June 2014
Replies: 6
Views: 1423

Re: Autoget Error in FW May 2014 and June 2014

Maurizio,

Please try this change in Class TAutoGet:

METHOD KeyCount() INLINE If( ! Empty( ::bKeyCount ), Eval( ::bKeyCount ), 0 )
by Antonio Linares
Mon Jul 14, 2014 4:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Autoget Error in FW May 2014 and June 2014
Replies: 6
Views: 1423

Autoget Error in FW May 2014 and June 2014

... => (b)TGETLIST( 312 ) Called from: .\source\classes\AUTOGET.PRG => TGETLIST:KEYCOUNT( 0 ) Called from: .\source\classes\AUTOGET.PRG => TAUTOGET:CREATELIST( 159 ) Called from: .\source\classes\AUTOGET.PRG => TAUTOGET:OPENLIST( 271 ) Called from: .\source\classes\AUTOGET.PRG => ...
by Maurizio
Fri Jul 11, 2014 9:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Autoget Error in FW May 2014 and June 2014
Replies: 6
Views: 1423

New FTDN march/april 2014 (FWH 14.04)

March 2014 and April 2014 ========== * New: Class TAutoGet developed by Daniel Garcia Gil. This is a GET that provides suggestions while you type into the GET. Daniel developed this Class before knowing of Marcelo Via's new similar class (that uses ...
by Antonio Linares
Thu May 22, 2014 4:16 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN march/april 2014 (FWH 14.04)
Replies: 2
Views: 1750

Re: TAutoGet for MySQL

Hi,

I just had another look at the class, and it seems that I added the possibility to seek in DBF-files myself :lol: .
Originally it was looking in an array.
I will try to change it to seek now in a recordset instead of a DBF, or is there already an other autocomplete-class with this feature?
by Marc Vanzegbroeck
Mon Oct 29, 2012 1:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TAutoGet for MySQL
Replies: 1
Views: 396

TAutoGet for MySQL

Hi,

Is there an update of the TAutoget-class, so it can be directly used with MySQL. No I'm reading the records-set into a DBF, put an index on it, and use this for the the table to look in for the TAutoGet .
by Marc Vanzegbroeck
Mon Oct 29, 2012 12:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TAutoGet for MySQL
Replies: 1
Views: 396

Re: Autoget test

josé this is strange...

Tautoget is from Tget

Tget can use Bitmaps...Action


But Tautoget not use bitmap..Action .... strange.....!!!
by Eoeo
Fri Jun 08, 2012 7:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Autoget test
Replies: 8
Views: 2136

Re: Autoget test

... you an Idea for this ? Not run !! I ask also to Maurilio but this guy not work with fwh from 2008 #include "fivewin.ch" #include "TAutoGet.ch" function AutoGet() local oDlg, oGet, cName, aNames cName := space(20) aNames := {"Mauro", "Mauricio", "Maurilio", ...
by Eoeo
Tue Jun 05, 2012 8:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Autoget test
Replies: 8
Views: 2136

Re: autocomplete in get

Hi Friends, One more addtion to TAutoget functionality Now a New item can be added to the Database also. Regards, - Ramesh Babu P * AUTOGET.PRG - A Test Program #include "fivewin.ch"#include "autoget.ch"#include "xbrowse.ch"//--------------------------------------------------------------------------------------FUNCTION ...
by RAMESHBABU
Sat Jun 25, 2011 3:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: autocomplete in get
Replies: 15
Views: 9187

Re: autocomplete in get

... @ 3.0,19 BUTTON oOk PROMPT "&Finish" SIZE 35,12 OF oDlg ACTION (lOk := .T., oDlg:End()) ACTIVATE DIALOG oDlg CENTERED RETURN nil // TAutoGet.prg // Auto complete text in get features // By: Maurilio Viana, mouri_ryo@hotmail.com // Date: 4/25/2007 // New features, bug fixes and enhancements ...
by Maurizio
Thu Jun 23, 2011 4:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: autocomplete in get
Replies: 15
Views: 9187

Re: auto complete feature

Mr.Euclides, Thanks for your suggestion. I have changed it in AUTOGET.CH Hi Friends, One more addition to TAutoGet Class: With the following code, you can now optionally add the new items you are typing, to the existing Array of Items. Once you finish the entry you can even ...
by RAMESHBABU
Mon Jun 20, 2011 7:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: auto complete feature
Replies: 35
Views: 19628

Re: auto complete feature - a small addition

Hi Friends, A small additon to TAutoGet to select any case by the user while typing in the GET. New parameter [ CASE [<UPPER>] [<LOWER>] [<PROPER>] is added. - Ramesh Babu P TAutoGet.Prg // TAutoGet.prg// Auto complete ...
by RAMESHBABU
Sun Jun 19, 2011 3:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: auto complete feature
Replies: 35
Views: 19628
Next

Return to advanced search