i tried looking around first but i guess my problem is too simple:
how do i make all letters uppercase or lowcase in a textbox?
i'm going to have a flag to determine this.
Printable View
i tried looking around first but i guess my problem is too simple:
how do i make all letters uppercase or lowcase in a textbox?
i'm going to have a flag to determine this.
myStr = ucase(mySTR)
that will convert it all to upper.. not sure if there is a function to convert from upper to lower
The easiest way:
in textbox keypress event:
for UpperCase : KeyAscii = Asc(Ucase(Chr(KeyAscii))
For LowerCAse : KeyAscii = Asc(Lcase(Chr(KeyAscii))
Hope this helps.
Thanks i appreciate the help