yea yea yea.....i no i no....should be using sockets...but i already got code for what im doing....wut i need to know is how to start a winsock array in vb.net .... i was thinking of something like this...

Code:
    Private Sub MakeWinsockArray()
        Dim i As ListViewItem
        For Each i In LV_IDs.Items
            Dim itemnumber As Integer = i.Index
            Load(WS_Boost(itemnumber))
                    '^^^^^^^error is here....
                    'Class AxMSWinsockLib.AxWinsock cannot be indexed because it has no default property.
        Next
    End Sub
im a beginner programmer....so dont judge to much ...

AcE