I want the first letter in the textbox to be a UCase and the others LCase I know the code that I have written here is only for LCase, how do I combine the UCase code with the LCase code.
If KeyAscii >= 65 And KeyAscii <= 90 Then
KeyAscii = KeyAscii + 32
Exit Sub
Else
End If
Any help will be greatly appreciated
Regards
Gimly
If KeyAscii >= 65 And KeyAscii <= 90 Then
KeyAscii = KeyAscii + 32
Exit Sub
Else
End If
Any help will be greatly appreciated
Regards
Gimly