For the winform control UltraMaskedEdit with the following properites:1, Edit As : Integer 2, InputMask: nnnnn3, MaxValue : 655354, 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.
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.