var tempSocket:TClientSocket;
begin
  tempSocket:=TClientSocket.Create(nil);
  with tempSocket do
  begin
    Close;
    Address:='127.0.0.1';
    Port:=5000;
    Active:=True;
    Sleep(10000);
    Socket.SendText('123123');
  end;
end;SERVER端 能收到连接信息,但是接收不到发送信息;但是把连接 与 发送(也是动态创建的TClientSocket) 放在两个事件里  就  能收到 发送信息
这是为什么????