List issue ...

Drago Bratko

Active Member
Licensed User
Longtime User
I have strange list issue ...

1. I initialise and then fill list with command like below :
lLanguages.Add (Array As String(sID, sName, sISOCode, sFlagPath))

2. Then, when I search trough list, I do loop and get every row as array, and then look inside (and that works fine) :
For i = 0 To lLanguages.Size-1
Dim cells() As String
cells = lLanguages.Get(i)
If sISOCode.IndexOf(cells(2)) > -1 Then Return cells(0)
Next

3. But problems arrise when I try to use it trough InputList :
InputList (lLanguages, "Select language", -1)
... list appears bit with entries like this :
[Ljava.lang.String;@44cb5b10, [Ljava.lang.String;@44cb5c28, ...

What I'm doing wrong ? Thanks a lot for help ...
 
Top