Hello,
I have a combobox where user selects different options. Based on the slected option, User allowed to enter values into two NumericUPDown controls. I have locked these NumericUPDown controls to min and max boundaries i.e. to unsigned integers. However, i would like to change these NumericUpDown controls Min&Max in one case of combobox selection to take only signed floating points. Once if the user again slected any other options after this NumericUPDown controls should be restricted to the previous values.
I have used this property in one case but it is not working.
NumericUpDown3.Minimum = -32768
'NumericUpDown3.Maximum = 32767
'NumericUpDown7.Minimum = -32768
'NumericUpDown7.Maximum = 32767
'NumericUpDown7.Increment = 0.1
'NumericUpDown3.Increment = 0.1
How could i acheive this to be work.
I have a combobox where user selects different options. Based on the slected option, User allowed to enter values into two NumericUPDown controls. I have locked these NumericUPDown controls to min and max boundaries i.e. to unsigned integers. However, i would like to change these NumericUpDown controls Min&Max in one case of combobox selection to take only signed floating points. Once if the user again slected any other options after this NumericUPDown controls should be restricted to the previous values.
I have used this property in one case but it is not working.
NumericUpDown3.Minimum = -32768
'NumericUpDown3.Maximum = 32767
'NumericUpDown7.Minimum = -32768
'NumericUpDown7.Maximum = 32767
'NumericUpDown7.Increment = 0.1
'NumericUpDown3.Increment = 0.1
How could i acheive this to be work.