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