Hi,
I have a ultraMaskedEdit box that only allowes numbers to be typed in. next to that I have added innside the InputMask field some text (before and after the number mask), so that the text is not changeble but the numbers are.
My problem here is that this text contains the letter 'A' wich for some reason is not beeing displayed in runtime.
The InputMask looks like this: NO#########MVA
This is what the field looks like in runtime (The letter A in MVA is not displayed):
Awsome! It works! :)
Thank you!
"A" is a mask character indicated alphanumeric characters are allowed in the mask. If you need a literal "A", I think you can do this using an escape code. Try a mask like this:
NO#########MV\A
Notice the "\" before the "A"