OK
I have label in my activity and i want that label show some text.
Example:
Dim lb As Label
Dim t1,t2,t3 As String
Dim i As Int
i = 1 'later i will change value of i
t1 = "First"
t2 = "Second"
t3 = "third bla bla"
lb.Text = ("t" &i)
And result is t1
How will i make that result is: First, Second or Third ???? :sign0104:
I have label in my activity and i want that label show some text.
Example:
Dim lb As Label
Dim t1,t2,t3 As String
Dim i As Int
i = 1 'later i will change value of i
t1 = "First"
t2 = "Second"
t3 = "third bla bla"
lb.Text = ("t" &i)
And result is t1
How will i make that result is: First, Second or Third ???? :sign0104: