How can I programmatically change the number displayed on a digital control?

2004-02-25 Thread RugbyFan
In my application, there are two while loops. The inner loop has a digital control where the user can enter a number. If he enters an invalid number, I want to clear his input.

Re: How can I programmatically change the number displayed on a digital control?

2004-02-25 Thread Joe Guo
Right click on the digital control and select "Create Local Variable", write to a default value if the user input is invalid. or, right click on the control and select property "Data Range", you can change the data range which will be forced upon when user enter data. Joe