Avatar

Level 2

Thank you very much for the quick response to this question.  I used your example and tweaked it just a little to make it allow only alpha characters and then to convert to upper case.  The result that worked was this.

if

(xfa.event.newText.match(/[^A-Za-z]/))

{

xfa.event.change

= "";

}

xfa.event.change

= xfa.event.change.toUpperCase();

Thank you again for your help.