Arraylist searching troubles

Go4Expert Member
2Jan2008,18:28   #1
CaJack's Avatar
I’m having some trouble with my array list. I’m using my array list to store numbers in it. Adding stuff to it works fine. But searching the array list to see if it already contains a number is proving more difficult. Here’s what I’ve got:
Code:
Public Sub TestNum()
        Dim p As String
        Dim q As String = frm_EnterInfo.TextBox1.Text
        For Each p In c_TestArrayClass.NumArray

            If p = q Then

                frm_enterInfo.Label3.Text = "Found in Array"
                Exit For
            Else

                frm_enterInfo.Label3.Text = "Not Found"

            End If
        Next
   
    End Sub
I get this error when I run it "Conversion from type 'EnterInfoClass' to type 'String' is not valid" and it points to this part:
Code:
For Each p In c_TestArrayClass.NumArray
Could anyone help me?
Team Leader
2Jan2008,23:29   #2
pradeep's Avatar
Try replacing
Code: VB
Dim q As String = frm_EnterInfo.TextBox1.Text
with
Code: VB
Dim q As String = cStr(frm_EnterInfo.TextBox1.Text)