Hi guys,

I developed a tool that sends data to a remote server... like this :

If txt1.State = sckConnected Then
txt1.SendData InputDataW
txt1.Text = ""
List1.Clear
Else
MsgBox "Not connected"
End If

Now the thing is that 1 in 10 or sometimes 4-10 data sendings i get a partial string on the server instead of an entire string i sent...

What could cause that?