S
seeker
I have a textbox that the user wants to have all caps while he types into the
textbox. The following code is in the onchange event for the textbox.
txtNameKey.Text = UCase(txtNameKey.Text)
txtNameKey.SelStart = Len(txtNameKey) + 1
This takes the textbox back to the first letter and overwrites it. I want
it to type the second letter and then third etc. Thanks.
textbox. The following code is in the onchange event for the textbox.
txtNameKey.Text = UCase(txtNameKey.Text)
txtNameKey.SelStart = Len(txtNameKey) + 1
This takes the textbox back to the first letter and overwrites it. I want
it to type the second letter and then third etc. Thanks.