I need to keep the input of a text entry field all in Uppercase. Is there either a way to do this at input, or a way to change the results to all uppercase after input?
Thanks!
- Noel
Forcing Uppercase in text entry field
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Hi Nomi,
put this into your field(s):
Tested, works and will probably do what you want 
Best
Klaus
put this into your field(s):
Code: Select all
on closefield
if me <> empty then
repeat for each char i in me
put toupper(i) after new_content
end repeat
put new_content into me
end if
end closefield

Best
Klaus