Hi,
Can someone help on how to make the first letter of a name capital.
Example: I enter in a text box james, I want the text box to show James.
Thanks
Hi
You can use an Input Mask
>L<?????????
But this can be a nuisance for say, James Joseph, or you can convert in a Before Update event:
Me.txtText=StrConv(Me.txtText, vbProperCase)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.