Re: UPPERCASE TEXT ONLY?

2001-07-06 Thread Buzz Kettles
If performance becomes an issue, a big case statement might execute faster (no conversions) -Buzz At 3:39 PM +0200 7/4/01, Milo Mineur wrote: >Thanx Pranav! > >works perfect. >(I was searching for a function instead the solution) > > >Milo > > > >on UCase(MyChar) > -- Convert the character to

Re: UPPERCASE TEXT ONLY?

2001-07-05 Thread Scott Flowers
Great! If you find that the Lingo execution speed becomes an issue (which can occur when processing large text chunks), Yair Sageev's TextCruncher provides case conversion methods. --scott <[EMAIL PROTECTED]> wrote: > > Thanx Pranav! > > works perfect. > (I was searching for a function instea

Re: UPPERCASE TEXT ONLY?

2001-07-04 Thread Milo Mineur
Thanx Pranav! works perfect. (I was searching for a function instead the solution) Milo on UCase(MyChar) -- Convert the character to ascii vAscii = charToNum(MyChar) -- The lower case alphabet lies between -- ASCII values of 97 and 122 if vAscii >= 97 AND vAscii <= 122 then -- The

Re: UPPERCASE TEXT ONLY?

2001-07-04 Thread pranavn
Milo Mineur ur.com> cc: Sent by: Subj

UPPERCASE TEXT ONLY?

2001-07-04 Thread Milo Mineur
Hi all, Does anyone know the command to force a textmember to UPPERCASE? I have an inputscreen in my program (dir 8) that allows only heximal input and 'abcdef' in lowercase is not clear enough to read. I hope somebody knows the solution for me. Thanx! Milo Mineur [To remove yourself f