I'd like to set the max value in the Winforms NumericUpDown control to infinity. How can I do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Don't think you can, but could do:
Which sets maximum allowed value to 79,228,162,514,264,337,593,543,950,335 |
||||
|
|
How to set it to infinity, if the value field only offers a decimal as return value? |
|||
|
|
|
Check out the Sine on codeplex.com you can do something like this:
But it's still cannot be infinity. The size of your RAM is your limitation. |
|||
|
|
|
You might consider to create your own user control that mimics the behaviour of a numeric up down. Simply use a TextBox and a vertical scroll bar (VScrollBar) and do some validation. As your data type you could use a double, that would also format as |
|||
|
|