Is there a way to input an integer to a program using the Seekbar or a similar continuously variable view object ?
Sub SeekBar1_ValueChanged (Value As Int, UserChanged As Boolean)
If UserChanged Then
If Value > 0 Then MyValue = Value
End If
End Sub
how to get 'Value' and display it in a label
Sub SeekBar1_ValueChanged (Value As Int, UserChanged As Boolean)
If UserChanged Then
Label1.Text = Value
End If
End Sub