Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Netzwerke (https://www.delphipraxis.net/14-netzwerke/)
-   -   Delphi irc join funkt nicht (https://www.delphipraxis.net/29343-irc-join-funkt-nicht.html)

oni 7. Sep 2004 21:04


irc join funkt nicht
 
wie kann ich mit idirc client einenen channel joinen mit
Delphi-Quellcode:
IdIRC1.Join('#xxx');
funkt es nicht

danke für die hilfe

mirage228 7. Sep 2004 21:05

Re: irc join funkt nicht
 
Hi,

ist der Channel evtl. Invite-Only?

mfG
mirage228

oni 8. Sep 2004 15:55

Re: irc join funkt nicht
 
nein das xxx war als platzhalter gedacht

Delphi-Quellcode:
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient,
  IdIRC, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Edit1: TEdit;
    Label1: TLabel;
    IdIRC1: TIdIRC;
    Button2: TButton;
    Edit2: TEdit;
    Label2: TLabel;
    Button3: TButton;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
    procedure Button3Click(Sender: TObject);
    procedure Button5Click(Sender: TObject);
    procedure Button6Click(Sender: TObject);
  private
    { Private-Deklarationen }
  public
    { Public-Deklarationen }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
IdIRC1.Host := 'irc.quakenet.org';
IdIRC1.Port := 6667;
IdIRC1.Username := 'ganesh303';
IdIRC1.Realname := 'ganesh303';
IdIRC1.Nick := 'ganesh303';
end;

procedure TForm1.Button2Click(Sender: TObject);
begin
IdIRC1.Connect(3000);
end;

procedure TForm1.Button3Click(Sender: TObject);

begin
IdIRC1.Join('#ganesh303');
end;

procedure TForm1.Button5Click(Sender: TObject);
begin
IdIRC1.Disconnect;
end;

procedure TForm1.Button6Click(Sender: TObject);
begin
label1.Color:=clBtnFace;
end;

end.
so das ist mein gesammter code

MasterC 8. Sep 2004 16:27

Re: irc join funkt nicht
 
Du hast ja überhaupt keine Ausgabe des Servers, Port 3000 kommt mir auch ein bisschen komisch vor. Ist das nicht eigentlich 6667?

oni 8. Sep 2004 16:38

Re: irc join funkt nicht
 
ich kann aber in sehen ob er connected ist und die 3000 ist nicht der port sonderen der, die, das timeout


Alle Zeitangaben in WEZ +1. Es ist jetzt 16:36 Uhr.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz