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; 
link|improve this question

65% accept rate
4  
MY thinking is that the TCP comms probably needs a message queue to be processed, and the MessageBox is providing that function. – mj2008 Jul 21 '11 at 7:57
1  
@mj2008, I also thought of that, but it's bizarre: MessageBox would 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
2  
Who on earth thought it was a good idea to stop us using multiple @usernames in comments?! Stack Overflow used to be in the business of making it easy for us to communicate. Very bad decision. Somebody think of the users! – David Heffernan Jul 21 '11 at 8:06
4  
Definitely a message pump issue; impossible to tell more without seeing more of the code. – gabr Jul 21 '11 at 8:24
3  
As well as the inadvisability of using a Windows message-based TCP system in a secondary thread as highlighted by the other posters, this line is also somewhat worrying : 'Sleep(2000); //Waiting for the Socket to Come to the Array'. It may well be fine, but what is happening while the thread is dead for two secs? – Martin James Jul 21 '11 at 9:55
show 12 more comments
feedback

2 Answers

up vote 2 down vote accepted

Assuming you are using non-blocking sockets, then your thread needs a running message queue and processing loop. That is why calling MessageBox() works - it is a modal dialog that pumps the calling thread's message queue internally. Your thread needs to call PeekMessage() or GetMessage() in a loop for the lifetime of the connection(s). Your loop can use MsgWaitForMultipleObjects() to detect when the message queue has something to process, if your thread has other things it needs to do.

link|improve this answer
i called GetMessage(), TranslateMessage() then DisposeMessage in a Row, but that didnt fix it (i called it once though, at the same place i called MessageBox API) – killercode Jul 23 '11 at 2:39
Calling it only once is not enough. Like I said, you need to continuously pump the queue for new messages for the entire lifetime of the connections that the thread manages. – Remy Lebeau Jul 23 '11 at 8:15
feedback

Try to replace Messagebox() with Application.ProcessMessages and see what happens.

link|improve this answer
i did, and it didnt work – killercode Jul 23 '11 at 2:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.