Hello together,
first at all sorry for my bad english, it´s not my mother tongue.
I have the trial version of B4A and i think about buying it. I have average knowledge in VBA.
Let´s come to my question. I´m creating a app for notes.
The text of each note is written in an Textfile (in Internal). The Textfile is named like "Note" & Int
(Int is an ongoing number).
I used the ScrollView to display all titles of the notes. The titles are also named like "Notetitle" & Int.
Now i have to say the app:
If Notetitle4 is clicked, then show Note4. I do this with the following code:
Sub Notetitle4_click
Display Note4
end sub
How can i get the example-number 4 variable, like:
sub Notetitle & Variable_Click
display Note & variable
end sub
first at all sorry for my bad english, it´s not my mother tongue.
I have the trial version of B4A and i think about buying it. I have average knowledge in VBA.
Let´s come to my question. I´m creating a app for notes.
The text of each note is written in an Textfile (in Internal). The Textfile is named like "Note" & Int
(Int is an ongoing number).
I used the ScrollView to display all titles of the notes. The titles are also named like "Notetitle" & Int.
Now i have to say the app:
If Notetitle4 is clicked, then show Note4. I do this with the following code:
Sub Notetitle4_click
Display Note4
end sub
How can i get the example-number 4 variable, like:
sub Notetitle & Variable_Click
display Note & variable
end sub