Hi,
I have search the forum, but could not get a simple code for the above. Could someone help?
I am trying the get the value of the seekbar to be displayed in a label box when the userchange the seekbar position.
?? thanks
I have search the forum, but could not get a simple code for the above. Could someone help?
I am trying the get the value of the seekbar to be displayed in a label box when the userchange the seekbar position.
B4X:
Sub seekbar1_Valuechange ( Value As Int, userchange As Boolean)
If userchange Then
label.Text = Value
End If
End Sub
?? thanks