ciao
is there a function to search for a value in the list?
I've created a list of 800 items but the search is very slow.
For i1 = 0 To Lista.Size - 1
If Lista.Get(i1)= ABC Then
Trovato=True
Exit
End If
If Trovato=True Then Exit
Next
is there a function to search for a value in the list?
I've created a list of 800 items but the search is very slow.
For i1 = 0 To Lista.Size - 1
If Lista.Get(i1)= ABC Then
Trovato=True
Exit
End If
If Trovato=True Then Exit
Next