I am connecting to an online mysql db using B4A job. My table has questions and i would like to move from one question to the next using previous/next buttons.
What i have done so far is to add the id of the questions to a list. I then use an index and set it to
my questionslist.size returns the correct number of questions from the table
How can i use it to get the exact question and post it on current page, then when i click next, it moves to the next question?
What i have done so far is to add the id of the questions to a list. I then use an index and set it to
B4X:
CurrentIndex = questionslist.Size
How can i use it to get the exact question and post it on current page, then when i click next, it moves to the next question?