How to Programmatically Browse through Values in a DomainUpDownExt Control

3 Sep 20201 minute to read

We can programmatically browse through the previous and the next values, of the current value, by calling UpButton and DownButton methods.

//Goes to the previous value.
this.domainUpDownExt1.UpButton();

//Goes to the Next value.
this.domainUpDownExt1.DownButton();
'Goes to the previous value.
Me.domainUpDownExt1.UpButton()

'Goes to the Next value.
Me.domainUpDownExt1.DownButton()