How to Browse Values in WinForms DomainUpDownExt

18 Nov 20181 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()