Caps Lock

G

Guest

It is possible to set Caps Lock on when opening a database?

I have formated the fields and table etc to show all caps but when you edit
the data in a field (where the data was initially entered in lower case) the
text reverts to lower case during the edit phase.
 
J

Jon Lewis

Try suing the UCase function to convert the input to upper case.

e.g.

Private Sub MyTextBox_AfterUpdate()
Me.MyTextBox = UCase(Me.MyTextBox)
End Sub

The data will then be stored in upper case. Formatting controls how data is
displayed rather than how it is stored.

HTH
 
G

Guest

Thanks

Jon Lewis said:
Try suing the UCase function to convert the input to upper case.

e.g.

Private Sub MyTextBox_AfterUpdate()
Me.MyTextBox = UCase(Me.MyTextBox)
End Sub

The data will then be stored in upper case. Formatting controls how data is
displayed rather than how it is stored.

HTH
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Combo Box with Caps Locki 2
Caps Lock problem 14
CAPS LOCK KEY 1
Caps Lock vs Lower Case 5
Table set up 5
Caps lock 1
Text Format in Tables... 2
How text is displayed in entry fields and table data 2

Top