Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
790
UltraMaskedEdit with text and numbers
posted

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):


Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    "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"

Children