Somebody how can I force to Uppercase in a Edit Box . This control doesnt have a Input Mask property, and dont know if the Format property can make it. Thank you in advance.
Somebody how can I force to Uppercase in a Edit Box . This control doesnt have a Input Mask property, and dont know if the Format property can make it. Thank you in advance.
Try this code in the control's valid:
REPLACE MyField WITH UPPER( This.Value ) IN MyAlias
Uppercase in Edit Box
Kennon2005
Try this code in the control's valid:
REPLACE MyField WITH UPPER( This.Value ) IN MyAlias
C. Charpentier
Try ! in the format.
All upper case will look bad to the user, are you sure you want to do this
Don
samymelbourne
Yes, it looks bad, but it is necessary in a user form.
JLucio