Avatar

Level 5

Hi,

You can use the function .toUpperCase(); on any string to make it upper (capital) letters.

for example.

TextField1.rawValue = TextField1.rawValue.toUpperCase();

As to when you want to run this, that is really up to use.

If you are wanting all text fields changed and your form has a submit button you could do it at that point just by looping through the fields, or you could place it on the exit event.

Hope this helps

Malcolm