Form Field

  • Thread starter Thread starter netadmin
  • Start date Start date
N

netadmin

I would like to know how I would code a text box so that
the data entered is always in capital letters. Any help
would be greatly appreciated

Thank you
 
Put the following code in the AfterUpdate event of the textbox:
Strconv(Me!NameOfTextbox,vbUpperCase)
 
I would like to know how I would code a text box so that
the data entered is always in capital letters. Any help
would be greatly appreciated

Thank you

Don't bother. Let the user enter the data as they will.
Code the Control's AfterUpdate event:
[ControlName]= UCase([ControlName])

All text will be in upper case.
 
Back
Top