RE: Error when tryijng to use Upper()
- Posted by Matt Lewis <matthewwalkerlewis at yahoo.com> Oct 15, 2003
- 398 views
Euphoria is case sensitive, so you have to use upper(), not Upper(). Matt Lewis PS If possible, please send your messages in plain text mode (not html or rtf). -----Original Message----- From: ronaustin at alltel.net [mailto:ronaustin at alltel.net] I included wildcard.e and misc.e in my program and wrote to following to force text to upper case when it was saved. err = db_insert(Upper(getText(Code)),Upper(getText(Desc))) I get an error stating that "Upper is not defined". What am I doing wrong? I would really prefer that the text be entered in upper case as the user types it, but I don't see any way to do that unless I get the letters one at a time, convert them to upper case and then display them back on the screen. It would be nice if a flag could indicate that text should be entered in upper case when using the SleText control.