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
85
Ultra Masked Edit Control
posted

I used UltraMaskedEdit Controll in my application.Now I want to used Inpast property.But the main issue is that when I save the data I dont want To save the inpust mask I only want to save the data.How I achieved this????

  • 37774
    Suggested Answer
    posted

    I'm not quite sure how you're storing your data, but assuming that you're just checking the Value property of the UlrtaMaskedEdit and you only want the characters that the user entered and not the characters that are part of the mask, you could set the DataMode of the control to Raw.  So, if you had an InputMask of "##-##-##" and the control is displaying "12-34-56", when you set the DataMode to Raw the Value would be "123456".

    -Matt