Default Caps Lock in ClientID

Sinnah

Registered User.
Local time
Today, 20:44
Joined
May 26, 2000
Messages
15
I am trying to make capital letters in my entry text box.

I do not put it take the capital string, could any one help me on this?

Many thanks in advance.
 
If you want the entry to be converted to all Upper Case, do this. Using the After Update event of the txtbox you are using place the following code:

Private Sub txtYourTextBox_AfterUpdate()
Me.ActiveControl = UCase(Me.ActiveControl)
End Sub

Change "txtYourTextBox" the the name of you control.

This will convert the entry to Upper Case no matter how it's entered.

HTH
RDH
 
Pat, I have always done this using the After Update event of the control, so I said "what the heck, I'll try it Pat's way" but I can't get it to work with the Before Update event of the control.

RDH
 
How come when I use the ">" symbol in the format section of a field's properties to capitalize all the text, this limits the number of characters I can type into the field?
 
Thank you for the tip Mr Hicks. It is working with your code.
Many Thanks again.
Sinnah
 

Users who are viewing this thread

Back
Top Bottom