Jul 20, 2004 #1 OOzy Programmer Jul 24, 2000 135 SA Dears, I have a text field (255) named title. All titles are in CAPS. How can I change thier case to a Title case i.e. first letter only in CAPS
Dears, I have a text field (255) named title. All titles are in CAPS. How can I change thier case to a Title case i.e. first letter only in CAPS
Jul 20, 2004 #2 AndyHorn Technical User Feb 12, 2003 49 GB The way I've ahieved this is on the After Update Event of the Title field on my form I've got the following code: Private Sub Title_AfterUpdate() Title = StrConv(Title, vbProperCase) End Sub That should do it. Upvote 0 Downvote
The way I've ahieved this is on the After Update Event of the Title field on my form I've got the following code: Private Sub Title_AfterUpdate() Title = StrConv(Title, vbProperCase) End Sub That should do it.