Question:
Is it possible to set up a SetPoint to display characters in all caps?
Solution:
Yes. To do so, you must write a script using MakeUpper() function, because it is not possible to configure them to be automatically written in all caps when writing in the SetPoint. This script can be done, for example, in the SetPoint’s OnKillFocus event. So, whenever something is typed, as soon as the focus is out of the SetPoint, the typed text will be in all caps.
Example of script in the SetPoint’s OnKillFocus event linked to tag003: tag003 = MakeUpper(tag003)