Hi,

Right. Your scope is OK but you have to assign the values after the NumericUpDown value has been selected. Presumably the NumericUpDown is contained in the same form so you need

VB Code:
  1. Private Sub NumericUpDown4_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NumericUpDown1.ValueChanged
  2.  
  3.    secs =CInt(NumericUpDown4.Value)    
  4. End Sub

However, as you are using several NumericUpDown controls, you probably need to include that code in the click event of a Proceed button.