Newsgroups : Borland : borland.public.delphi.internet.winsock : 2006 Jun : TIDCmdTCPServer
| Subject: | TIDCmdTCPServer |
| Posted by: | "Roberto Colpani" (roberto.colpa..@vetrariafratellicolpani.it) |
| Date: | Tue, 13 Jun 2006 18:09:56 |
I have this problem.
I have one TIDTCPServer and one TIDTCPClient on two program; I have create 3
TICommandHandlerthat perform something (the first create my UserObject and
nothiong else and the second perfom a sendreply method and nothing else.
On my client side I have this code:
procedure TfrmMain.Button1Click(Sender: TObject);
begin
TangoClient.SendCmd('Prova');
showmessage(TangoClient.LastCmdResult.Text.Text);
end;
but it show the normareply.text of the first commandhandler. Why?
How can I send to my client side another command so I can handle it?