I have a control array of objects that create events.
ServerControlSet (Thats it’s name) whos superclass is MyTCPSocket
In the event handler of the control array I get the index
Sub Connected(index as Integer) Handles Connected
System.DebugLog("Server " + str(index) + " has connected to " + ServerControlSet(index).RemoteAddress + " on port " + str(ServerControlSet(index).Port))
End Sub
So my question here is… could i have used self or me or this in this method???