TextBox Formatting

J

John

HI
How would I set the text within a textbox or memo field to automatically
change to uppercase when lost focus.
I do not want to use the > formatting as this restricts text character
ammount in a memo field.

Any Ideas

Regards

John
 
O

Ofer Cohen

You can use the AfterUpdate event of the text box to set the field to uppercase

Me.[FieldName] = UCase(Me.[FieldName])
 
Top