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
 
G

Guest

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

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

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top