Registriert seit: 3. Sep 2004
4.629 Beiträge
Delphi 10.2 Tokyo Starter
|
Re: Indy 10 funct anders als Indy 9?
11. Feb 2006, 13:07
Es dürfte IdTCPClient1.IOHandler.ReadLn sein.
Also:
Delphi-Quellcode:
procedure TForm6.Button1Click(Sender: TObject);
begin
with IdTCPClient1 do begin
Connect;
try
ListBox1.Items.Add(IOHandler.ReadLn); //Hier mag er das ReadLn nicht
finally
Disconnect;
end;
end;
end;
Florian
|