Einzelnen Beitrag anzeigen

sharkx

Registriert seit: 24. Feb 2003
Ort: St. Ingbert
211 Beiträge
 
Delphi 7 Enterprise
 
#11

Re: IdIRC. wie rausfinden ob fertig connected?

  Alt 13. Jul 2004, 09:09
Das einzigste wo du bei indy abfragen kannst ob du connectest bist, ist über die motd.
Delphi-Quellcode:
procedure TForm1.IdIRC1System(Sender: TObject; AUser: TIdIRCUser; ACmdCode: Integer; ACommand, AContent: String);
begin
  { End Motd abfragen }
  if ACmdCode = 376 then
    IdIRC1.Join(Channel.Text);
end;
Programming today is a race between Software Engineers striving to build bigger and better idiot-proof Programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning!
  Mit Zitat antworten Zitat