Private Sub numericUpDown_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles numericUpDown_Speed.ValueChanged
Try
iNumericUpDownValue =
Me.numericUpDown_Speed.Value
If iNumericUpDownValueOld > iNumericUpDownValue Then
iNumericUpDownValue = iNumericUpDownValue - 1
Else
iNumericUpDownValue = iNumericUpDownValue + 1
End If
LoadedTracks_ModifySpeedFactor(iNumericUpDownValue)
iNumericUpDownValueOld = iNumericUpDownValue
Catch ex As Exception
MessageBox.Show(
"numericUpDown_ValueChanged exception = " + ex.ToString)
End Try
End Sub