Hello,
this is my first post here, so if it's a completely stupid question please be nice

This is what i've done so far:
1. Dropped a TLTCPComponent (named as 'TCP') on a form.
2. Connect to server
3. Send a few messages to the server
TCP.SendMessage('Message 1');
TCP.SendMessage('Message 2');
TCP.SendMessage('Message 3');
The server should response to each sent message now, but nothing happens. I'm using the following onReceive Event.
procedure TForm1.TCPReceive(aSocket: TLSocket);
var s : string;
begin
If TCP.GetMessage(s) > 0 Then
Memo.Append(s);
end;
The event doesn't get fired. Well, it doesn't until i disconnect from the server. Then i get a response for the very first message i sent, but not for the other ones. I also tried a timer controlled .GetMessage but that didn't work either.
I hope someone can bail me out
