Force Text to Uppercase

D

DazedConfused

What code do I use to force All text to uppercase?
I know I have seen this code elsewhere but can't remember where.

Thanks
 
D

Damon Heron

In the after update event of the textbox, put:
Me!txtYourName = UCase(txtYourName)

Damon
 
Top