EDMURP said:
Thank you for a very swift reply, i appreciate your help. Can you tell me
where I would get a step by step guide to doing this. I somewhat understand
what you are saying but unsure where to start and some of the terms. I am
very new to this and sefl taught.
Thanks and Regards
In your form's design view select one of the TextBoxes for entering data and
then find the AfterUpdate event property box on the {Events} tab of the property
sheet. In that box enter "[Event Procedure]" from the drop-down list of choices
and then press the build [...] button to the right of the property box.
That will take you to the VBA code window within the module attached to the form
and your cursor will be pre-positioned between the two lines that define the
AfterUpdate event for your TextBox. Between those two lines enter...
Me!TextBoxName = UCase(Me!TextBoxName)
....substituting the actual name of your control. Save and exit the VBA code
window. You should now find that when you enter text in that TextBox that it
will be changed to all caps when you tab out of it. Repeat this for all other
TextBoxes on your form.