NumericUpDown Controls

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I set the Maximum values of a NumericUpDown Control?

If OptionBox TermsMonths.Checked = True Then
Control.Maximum() = 360
Else
Control.Maximum() = 30
 
Gus said:
How do I set the Maximum values of a NumericUpDown Control?

If OptionBox TermsMonths.Checked = True Then
Control.Maximum() = 360
Else
Control.Maximum() = 30

YES, that's right!

(Try typing "NumericUpDown.Maximum" in Help)

ShaneO

There are 10 kinds of people - Those who understand Binary and those who
don't.
 
Back
Top