Re: getNumber in wxEuphoria
- Posted by Greg Haberek <ghaberek at gmail.com> Apr 03, 2005
- 537 views
> I use the command getNumber in win32lib as:
> HMEID = getNumber(EMEID)
> set_parameter("HMEID",HMEID)
This does the same thing:
HMEID = getText( EMEID )
HMEID = value( HMEID )
if HMEID[1] = GET_SUCCESS then
HMEID = HMEID[2]
else
HMEID = 0
end if
set_parameter( "HMEID", HMEID )
> I want to do the same thing in wxEuphoria. I have trouble changing the
> text field to integer to insert into edb using eusql.
> Thanks for any help
> jim

