actually the writelistexample is called
the problem is when code below execute is will error
For i = 1 To 100
If transfer = list1.Get(i) Then
Label3.text = list1.Get(i)
Label1.Text = "good"
Exit
End If
Next
if i use code below it will works fine, but it only compare with 1 item
If transfer = list1.Get(0) Then
Label3.text = list1.Get(0)
Label1.Text = "good"
End If
i want to compare with many item