there's also the UCASE function
Main Topics
Browse All TopicsWhat code can I use so that when I type anything in a textbox all the letters appears capitalized?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Hi DlmirC,
What iprogram said is to make All the letters Capital.
To make Capitalize use this code.
Put this code in your text keypress event
Private Sub Text1_KeyPress(KeyAscii As Integer)
KeyAscii = AutoType(Screen.ActiveCont
End Sub
In a suitable module create the Public Funtion as listed below
Public Function AutoType(c As Control, KeyAscii As Integer) As Integer
AutoType = KeyAscii
If KeyAscii > 95 And KeyAscii < 123 Then
If c.SelStart = "0" Then
AutoType = KeyAscii - 32
ElseIf Mid$(c.Text, c.SelStart, 1) < "!" Then
AutoType = KeyAscii - 32
End If
End If
End Function
This will solve your purpose
Good luck
Sridhar
Hi ajay,
what DlmirC asked is to capitalize the Letters typed in text box. I have done the code for that and it is working fine in my machine. Because of that only i proposed it as answer. Otherwise i usually post it as comment.
Hello DlmirC your question is misleaded me. You are asked to capitalize and you are accepted code for capital letters.
Anyway bye
Sridhar
Business Accounts
Answer for Membership
by: iProgramPosted on 2001-02-07 at 22:37:18ID: 5823521
Easy:
If textbox named Text1:
Private Sub Text1_KeyPress(KeyAscii As Integer)
If (KeyAscii >= 97 And KeyAscii <= 122) Then KeyAscii = KeyAscii - 32
End Sub