Hello everyone.
I have a layout named PNLS
In PNLS I have 2 labels and 1 EditText TXTS
With a loop, I add some panels PNLS in a scrollview named SCV
I invite the user to entrer datas in the editTexts named TXTS
Question:
How can I get the texts of each editText (to next insert in a SQLite table) ?
With 'w.Tag', I obtain the Tag.
But there is no 'w.Text' (for my EditTexts TXTS) which is possible.
So, How can I get the values entered by the user in the TXTS fields ?
I always have to learn...
Thank you
I have a layout named PNLS
In PNLS I have 2 labels and 1 EditText TXTS
With a loop, I add some panels PNLS in a scrollview named SCV
I invite the user to entrer datas in the editTexts named TXTS
Question:
How can I get the texts of each editText (to next insert in a SQLite table) ?
B4X:
For Each w As View In pnls.GetAllViewsRecursive
Log("pnls " & i & " - " & w.tag)
Next
With 'w.Tag', I obtain the Tag.
But there is no 'w.Text' (for my EditTexts TXTS) which is possible.
So, How can I get the values entered by the user in the TXTS fields ?
I always have to learn...
Thank you