i created a class of TThread to do some socket operations, the thing is, the code doesnt work unless i add MessageBox to it, sockets wont work unless i put a MessageBox call before it
Sleep(2000); //Waiting for the Socket to Come to the Array
// Messagebox(0, '', '', 0); { Wont work unless this line is Uncommented }
if Server.ClientList[Handle] <> nil then
begin
if (Server.ClientList[Handle].Connected) and (AppSocket.Connected) do
begin
// Send Data on Socket
// Relay Data between Server.ClientList[Handle] and AppSocket;
end;
MessageBoxwould surely pump messages while it's displaying, but once that's over, no more messages are pumped because the OP didn't mention implementing a message pump. Maybe enough messages make it through while the box is on screen to create the illusion that things are working after the call, but in fact all that's available is data that made it trough while the message was on screen. – Cosmin Prund Jul 21 '11 at 8:02