Page 1 of 1
Can´t find error meanning. "Error BASE/1009 : <&quo
Posted: Thu Dec 15, 2005 11:59 am
by concentra
I am getting an error "Error BASE/1009 : <" and can´t find what is it.
This error is not in Clipper docs.
The prg line is "RETURN Inkey()"...
It s an FiveWin + Clipper program.
Does anyone know what is it ?
Posted: Thu Dec 15, 2005 12:29 pm
by dbSoft
DBCMD/1009 Argument error
Explanation: The argument FIELDNAME() was non-numeric.
Action: Correct the program.
See Also: FIELDNAME() function
Posted: Thu Dec 15, 2005 2:43 pm
by Antonio Linares
You should not use Inkey() on a FW application.
Posted: Fri Dec 16, 2005 12:18 pm
by concentra
Antonio Linares wrote:You should not use Inkey() on a FW application.
Ok, thanks.
What should I use to wait a key in FiveWin ?
Posted: Fri Dec 16, 2005 1:44 pm
by Antonio Linares
Please explain what you need to do. What do you need that keystroke for ?
Posted: Fri Dec 16, 2005 3:43 pm
by concentra
Antonio Linares wrote:Please explain what you need to do. What do you need that keystroke for ?
In this case I need to wait sometime to repeat a procedure.
Posted: Fri Dec 16, 2005 3:59 pm
by Enrico Maria Giordano
Then use something like SysWait( nSec ).
EMG