PDA

Click to See Complete Forum and Search --> : Winsock Problem


bombfunk
Feb 11th, 2001, 02:24 AM
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

BitBlt
Feb 11th, 2001, 10:35 AM
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