Einzelnen Beitrag anzeigen

Benutzerbild von Zacherl
Zacherl

Registriert seit: 3. Sep 2004
4.629 Beiträge
 
Delphi 10.2 Tokyo Starter
 
#13

Re: Indy 10 funct anders als Indy 9?

  Alt 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
Projekte:
- GitHub (Profil, zyantific)
- zYan Disassembler Engine ( Zydis Online, Zydis GitHub)
  Mit Zitat antworten Zitat