So, I'm trying to get a label to reflect the current settings of whatever action is taking place.
this.SettingXLbl.Text = "The current value-set is " + SettingUpDown.Value;
I modified the auto-generated code to attempt to display the current value in the SettingUpDown, but I'm only getting zeroes.
I traded .Value
for .Minimum
still to get a zero result. The minimum value for the up-down is greater than zero so I'm not sure what I need to do differently to get it to reflect the current value held in the up-down.
Is there some other property that I need to be changing rather than the text itself.