Good day!
How to get the data entered in the fields array EditText?
'The user enters data
What is the error?
How to get the data entered in the fields array EditText?
'The user enters data
B4X:
Sub EnterNumer
Dim EditText1 As EditText
For i = 1 To 5
EditText1.Initialize ("")
Numer(i)= EditText1.Text
Next
End Sub
'Read the entered data
Sub ReadNumer
Dim EditText1 As EditText
For i = 1 To 5
EditText1.Initialize ("")
EditText1.Text = Numer(i)
Next
End Sub
What is the error?
Last edited: