PDA

View Full Version : Help to automatically convert text to Uppercase will user tpes the text in VB


Valic
05-18-2004, 04:11 PM
I want, when the user enters data onto a vb form, for the text to automatically convert to uppercase in visual basic.

shmoove
05-18-2004, 04:40 PM
You can use the Change event of the textbox, in conjunction with the UCase function.

shmoove