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
680
Bug for the scope validation for UltraMaskedEdit?
posted

For the winform control UltraMaskedEdit with the following properites:
1, Edit As : Integer
2, InputMask: nnnnn
3, MaxValue : 65535
4, MinValue : 1

When it runs, it was found that its focus can NOT be shiftted even the value 6666 is input inside, is it a bug?

Thanks a lot.

 

Parents
No Data
Reply
  • 71886
    Verified Answer
    Offline posted

    Hello felixsen,

    If I have to guess here I would say that your MaxValue is set to "65535", but as a 'String' maybe, this could happen if you did it through the designer. Please use the following line in the load event of the form for example in order to see if this is really the issue:

        ultraMaskedEdit1.MaxValue = 65535;

    Please feel free to let me know if I misunderstood you or if you have any other questions.

Children
No Data