JackSkellington
Technical User
How would I go about comparing items in a single array list?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim i as Int16
Dim AL as ArrayList = New ArrayList
Dim Found As Boolean
Dim Pos as Int16
AL.Add(1)
AL.Add(2)
AL.Add(3)
For i = 0 to AL.Count -1
If Val(AL(i)) = 2 Then
Found=True
Pos = i
Exit For
Else
Found = False
End If
Next
If Found Then
Messagebox.Show("Your Item Was Found at Position " & Pos)
Else
Messagebox.Show("Your Item Was Not Found")
End If