S
scorpion53061
I have been asked to come up with a way to make a instant message program
that will allow our outside customers by clicking on a name in a drop down
menu can IM who they want.
THe application I have works after telling my router to forward all
communications from Port 5000 to a local IP address that contains the
"Socket Server" program.
mobjClient = New TcpClient("zz.zzz.zz.zz", 5000)
mobjClient.GetStream()
DisplayText("Connected" & vbCrLf)
mobjClient.GetStream.BeginRead(marData, 0, 1024, AddressOf DoRead,
Nothing)
Send(ipadd & " online")
THe only problem is that all users would get this message that are running
the client........not just the individual being requested.
Is there a way in this code sample to tell it to divert to a local IP(or
machine name) running the client within this network?
that will allow our outside customers by clicking on a name in a drop down
menu can IM who they want.
THe application I have works after telling my router to forward all
communications from Port 5000 to a local IP address that contains the
"Socket Server" program.
mobjClient = New TcpClient("zz.zzz.zz.zz", 5000)
mobjClient.GetStream()
DisplayText("Connected" & vbCrLf)
mobjClient.GetStream.BeginRead(marData, 0, 1024, AddressOf DoRead,
Nothing)
Send(ipadd & " online")
THe only problem is that all users would get this message that are running
the client........not just the individual being requested.
Is there a way in this code sample to tell it to divert to a local IP(or
machine name) running the client within this network?