G
Guest
I have my fields setup to make the first letter uppercase, however, it makes
all other letters lowercase (see code below). Is there a way I can code it
to not change the case after the first letter...as in TX (abbreviation for
Texas), which now would appear as Tx?
Private Sub CITY_AfterUpdate()
CITY = StrConv([CITY], 3)
End Sub
all other letters lowercase (see code below). Is there a way I can code it
to not change the case after the first letter...as in TX (abbreviation for
Texas), which now would appear as Tx?
Private Sub CITY_AfterUpdate()
CITY = StrConv([CITY], 3)
End Sub