Hi
IS there a way that you can convert what a user puts in a textbox into CAPS or something that forces them to enter in caps?
Many Thanks in advance
Hi
IS there a way that you can convert what a user puts in a textbox into CAPS or something that forces them to enter in caps?
Many Thanks in advance
You can write such OnChange event handler:
Private Sub TextBox1_Change()
TextBox1.Text = UCase(TextBox1.Text)
End Sub
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks