Capitalize input
If you mean captialize first letter of input into text box on userform then
try:
Private Sub TextBox1_Change()
With TextBox1
If Len(.Text) = 1 Then .Text = UCase(.Text)
End With
End Sub
Regards,
Greg
"Nalla" wrote:
Is it possable to capitalize the first letter of an users input as it is
entered into text box that is on a combo box, by useing code
thanks in advance
|