Mar 1, 2005 #1 sparisbh Technical User Apr 19, 2002 3 BE Hi: How can I implement the automatic capitalization of first letter as a format in a text data type . Thank you
Hi: How can I implement the automatic capitalization of first letter as a format in a text data type . Thank you
Mar 1, 2005 #2 lupins46 MIS Feb 19, 2004 2,509 GB There is no format string for this. You have to use code (or a macro) in the textbox's afterupdate event. Using the afterupdate event procedure you would have: me.mytextboxnamehere = strconv(me.mytextboxnamehere,vbpropercase) Upvote 0 Downvote
There is no format string for this. You have to use code (or a macro) in the textbox's afterupdate event. Using the afterupdate event procedure you would have: me.mytextboxnamehere = strconv(me.mytextboxnamehere,vbpropercase)