PDA

Click to See Complete Forum and Search --> : keypress Question


Jessie
Dec 5th, 1999, 01:29 AM
i not sure how to do this when a user enter
info into a textbox I would like the first
letter to default to uppercase always

MartinLiss
Dec 5th, 1999, 08:17 AM
This will default the 1st letter to uppercase
If Len(Text1) = 1 Then
Text1 = UCase(Text1)
Text1.SelStart = Len(Text1)
End If


------------------
Marty