 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Daniel Guest
|
Posted: Thu Sep 07, 2006 5:58 pm Post subject: New IdIRC problem.. |
|
|
Getting really exasperated with this. I keep getting the following error, even though i think i filled in all the parameters required:
Resolving hostname efnet.xs4all.nl.
Connecting to 194.109.129.220.
Connected.
Connecté
Connexion ok
NICK NickoDon
USER NickoD 0 * :
NOTICE AUTH :*** Looking up your hostname...
**
NOTICE AUTH :*** Checking Ident
**
NOTICE AUTH :*** Found your hostname
**
NOTICE AUTH :*** No Ident response
**
461 Nicko USER :Not enough parameters
ERROR :Closing Link: 127.0.0.1 (Connection timed out)
Disconnected.
Here's my on connection code:
procedure TForm1.Button1Click(Sender: TObject);
begin
IdIRC1.Host := 'efnet.xs4all.nl';
IdIRC1.Port := 6667;
IdIRC1.Nickname := edit1.Text;
IdIRC1.Username:='NickoD';
IdIRC1.AltNickname:='NickoDon';
try
idIRC1.Connect; // timeout 60 seconds
except
if not idIRC1.Connected then
begin
MessageDlg('Error connectiing to ' + idIRC1.Host, mtError, [mbOK], 0);
Exit;
end;
end;
MessageDlg('Connected to ' + idIRC1.Host, mtInformation, [mbOK], 0);
//idIRC1.Join(edit3.text);
button1.Enabled:=false;
end;
As far as i know, i've filled in all the nicknames etc, correctly, so i'm at a lost as to why i'm getting this error
thanks |
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Thu Sep 07, 2006 9:40 pm Post subject: Re: New IdIRC problem.. |
|
|
"Daniel" <Dletzer (AT) gmail (DOT) com> wrote in message
news:45001790$1 (AT) newsgroups (DOT) borland.com...
| Quote: | I keep getting the following error, even though i think
i filled in all the parameters required:
|
You are not. The USER command has 4 parameters, but you are only sending 3
of them. Well, you are sending 4, but the 4th parameter is empty. You need
to set the RealName property to a non-empty string.
Gambit |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|