View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Karen Agostinho Karen Agostinho is offline
external usenet poster
 
Posts: 2
Default UpCase in userform

Michael,
You know, I tried that and it didn't work, so when I saw your post I thought
OK I'll try it again and see if I made a mistake and it didn't work, I got
an error message saying that I need to define user variables. BUT, I thought
this can't be so I tried it once more, making it a third time, and now it
works !!!
Anyway thanks
Today's not going to be a bummer after all.
Kames



"Michael Loganov" wrote in message
...
Karen,

To get the text as upper case you could try adding this code to the change
event.

Private Sub TextBox1_Change()
TextBox1.Text = UCase(TextBox1.Text)
End Sub

TextBox1 has to be substituted with the name of your textbox.

Regards
Michael.


"Karen Agostinho" wrote in message
...
Good Morning NG,
I have a text box that I receive user input for states.
I have the MaxLenght set to 2 so only things Like CA, NV, AZ can

entered,
but sometimes the user wants to put in ca, nv, or az.
How can I set the text box to automatically capitalize the letters for

the
users in VBA code
Thanks

Karen