请告知为什么会这样。在一个简单的示例服务器应用程序上,我有以下代码:procedureTForm13.ServerSocket1ClientRead(Sender:TObject;Socket:TCustomWinSocket);varstr:string;beginstr:=socket.ReceiveText;showmessage(str);end;在客户端我有clientsocket1.Open;clientsocket1.Socket.SendText(txtMSG.Text);没什么好看的。奇怪的是,当我第一次向服务器发送消息时,它被忽略了。之后每次都很好用。ClientR