|
Question : Input Mask: Lower Case only?
|
|
What's the easiest way to force a field (textbox) to be all lower case. Ideally it would just convert it to all lower case regardless of what the user enter. But I suppose I could just warn them and force them to do it correctly if they try to use upper?
Thx!
|
|
Answer : Input Mask: Lower Case only?
|
|
You can use an event procedure on the Key Press event and try this code :
KeyAscii = Asc(LCase(Chr(KeyAscii)))
|
|
|