I am trying to read all selected items from a listbox in Visual Basic.
Dim x As Integer
Dim testValue As String
testValue = "20"
For x = 0 To Me.ListBox1.Items.Count() - 1
If Me.ListBox1.Items.Item(x) = testValue Then
MessageBox.Show ("Found it")
Exit Sub
End If
Next x
is the code I am trying. But When I run the code, I am getting "Compile error : Method or data member not found"
I guess I am missing some references to use "ListBox.Items" method right? What is the required references/library.
Thanks!!!