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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top