If I send data to a server through winsock, normally the server sends data back.
But howto recieve and edit the data send by the server?
Thanx in advance
Printable View
If I send data to a server through winsock, normally the server sends data back.
But howto recieve and edit the data send by the server?
Thanx in advance
in the ........
Private Sub Winsock_DataArrival(data as ...)
Dim MyData as string 'or byte if you're sending a file.
Winsock1.GetData MyData
End Sub
now MyData will contain the recieved data