07-12-2005 09:20 AM
07-12-2005 09:40 AM
Create a new instance of the Range class with your updated minimum/maximum and assign it to the NumericEdit.Range property. For example:
numericEdit1.Range = new Range(0, 100);
- Elton