DaveJohnson
Technical User
I have a form with several text boxes and controls, can I convert all keyboard inputs to uppercase as typed.
Thanks
Dave Johnson
Thanks
Dave Johnson
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub txtDesc_Change()
Dim intStart As Integer
intStart = txtDesc.SelStart 'Remember Cursor Position
txtDesc.Text = UCase(txtDesc.Text) 'Change All To Upper
txtDesc.SelStart = intStart 'Reset Cursor Position
End Sub