In my VB project which was already error free I added a new sub
Now when I go to run project I get this compile error message:
Member already exists in a object module from which this object module derives
I searched for all occurrences of SocketListen and did not find any other occurence of this other than these:
SocketListen.Close
SocketListen.LocalPort = 8898
SocketListen.Listen
Code:
Private Sub SocketListen(ByVal requestID As Long)
Dim ConnectionTime As Long
SocketIndex = GetAvailableSocket
MainServerToMainClientSocket(SocketIndex).Accept requestID
MainServerToMainClientSocket(SocketIndex).Tag = requestID
End Sub
Member already exists in a object module from which this object module derives
I searched for all occurrences of SocketListen and did not find any other occurence of this other than these:
SocketListen.Close
SocketListen.LocalPort = 8898
SocketListen.Listen