what do I do so that when I type into a field the first character becomes an Upper case automatically.
what do I do so that when I type into a field the first character becomes an Upper case automatically.
You want the StrConv() function and the argument vbProperCase
Code:Dim strSample As String strSample = Me.txtSample.Value Me.txtSample.Value = StrConv(strSample, vbProperCase)