Hello,
I am using a Seekbar object that crashes my app.
Every time I move the cursor of Seek01, I get the message "Unfortunately, SeekTest has stopped working"
I don't see why.
If someone can help me.
Thanks!
I am using a Seekbar object that crashes my app.
Every time I move the cursor of Seek01, I get the message "Unfortunately, SeekTest has stopped working"
I don't see why.
If someone can help me.
Thanks!
B4X:
#ApplicationLabel: SEEKTEST
#VersionCode: 1
#SupportedOrientations: unspecified
#CanInstallToExternalStorage: False
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: True
#End Region
Sub Process_Globals
End Sub
Sub Globals
Dim Seek01 As SeekBar
Dim Label1 as Label
End Sub
Sub Activity_Create(FirstTime As Boolean)
' Seek01 and Label1 are created in Layout.bal
Activity.LoadLayout("Layout")
Seek01.Max = 10
Seek01.value = 1
End Sub
Sub Seek01_ValueChanged(V As Int)
Label1.Text = V
End Sub
Last edited: