L
LisaK
I have a field in my access database form that I would like to have all upper
case. Can someone tell me what I should do.
Thanks
case. Can someone tell me what I should do.
Thanks
Daniel Pineault said:In VBA you can simply use the UCase() function
ie:
UCase("change this to uppercase")
You could tie this into a form event to change the data entered by your user
automatically. Something like
Me.ControlName = UCase(Me.ControlName)
where ControlName is the name of the control whose data you wish to have
displayed/saved in uppercase.
--
Hope this helps,
Daniel Pineault
If this post was helpful, please rate it by using the vote buttons.
CCCCCCCCCCCC