converting existing text (i.e. already entered into DB) to all CAPS

A

Avi

I assume you wanna update a text field on a form:

Suppose the text field is called txtName.

You need to post the following line on the event which
populates your form: (usually it will work in your 'On
Current' event)

txtName.value = Format(txtName.Value, ">")


Cheers,

Avi
 
Top