GREETINGS!
THANK YOU FOR ANSWERING THIS REALLY NEWBIE QUESTION!
I feel I have walked into the twilight zone...
ERROR:
java.lang.ArrayIndexOutOfBoundsException: length=0; index=0
"T"&i are used for illustration purposes and represent variables coming from a data base.
This is not a case of loading constants into an array like:
Any help will be welcomed.
THANK YOU FOR ANSWERING THIS REALLY NEWBIE QUESTION!
I feel I have walked into the twilight zone...
B4X:
Dim a1() As String
For i = 0 To 5
a1(i)="T"&i
Next
ERROR:
java.lang.ArrayIndexOutOfBoundsException: length=0; index=0
"T"&i are used for illustration purposes and represent variables coming from a data base.
This is not a case of loading constants into an array like:
B4X:
Dim a1() As String = Array As String("Ian", "Mark", ...)
Any help will be welcomed.