Force Text to Uppercase

  • Thread starter Thread starter DazedConfused
  • Start date Start date
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
 
In the after update event of the textbox, put:
Me!txtYourName = UCase(txtYourName)

Damon
 
Back
Top