I have 2 winsock on a form ..
If the person have the password to unloack the application, he can send message :

Code:
Private Sub Command1_Click ()
   Winsock1.LocalPort=52
   Winsock1.connect "24.226.111.11", "51"
   Winsock1.SendData "YO !"
End Sub
For the sencond winsock , I put that in the f
Code:
Private Sub Form_load ()
   Winsock2.RemotePort=52
   Winsock2.LocalPort=51
   Winsock2.Listen
End if
So, I open the program,
I click on the button and winsock won't send anything ..!

WHY ?
Can you give me a good code to send/get ASCII data in TCP/IP
connection ??