Q Qamar Registered User. Local time Today, 05:29 Joined Jun 28, 2004 Messages 42 Mar 21, 2005 #1 i have a form, and i would like that on one of the fields, as soon as i type something in it when i leave the field, i want it to automatically convert it to title case. can this be done please? Cheers
i have a form, and i would like that on one of the fields, as soon as i type something in it when i leave the field, i want it to automatically convert it to title case. can this be done please? Cheers
maxmangion AWF VIP Local time Today, 13:29 Joined Feb 26, 2003 Messages 2,805 Mar 21, 2005 #2 In the afterupdate event of your control put the following: Me.ControlName = strconv(Me.ControlName, vbProperCase)
In the afterupdate event of your control put the following: Me.ControlName = strconv(Me.ControlName, vbProperCase)