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
405
Win Numeric editor control range limitation
posted

The present limitation for Win Numeric Editor is

Even if I set the type = double and set MaxValue = 999,999,999,999.99, in run time the controls accepts only 999,999,999.99 value.

Can anyone help me please how to remove this limitation.

 

  • 469350
    Suggested Answer
    Offline posted

    My guess is that this limitation is caused by the default mask. So you probably just need to change the InputMask or MaskInput property (I can never remember which one it is) to something like:

    nnnnnnnnnnnn.nn

  • 405
    posted

    same the case with the WinGrid column.

    I bound a column to a object field which is decimal and mapped to data type decimal(20,4) in my SQL DB.

    when I try to inline-edit the colum, the max it allows is 999,999,999.99

    How can I solve these probs.

    Thanks