[Delphi]Indy->Irc

Joined
Mar 23, 2007
Messages
931
Reaction score
11
Location
Europe
Hello.

I have a problem with my program. I added the indy component (IRC) for irc network connection. I've done so far so good. But i have a problem...

When someone else is typing a message all i see is first word.
Example:
If i type:"Hello, how are you today?"
In my memo is only:"Hello,".

Code:
procedure TMainForm.IrcPrivateMessage(ASender: TIdContext; const ANicknameFrom,
  AHost, ANicknameTo, AMessage: string);
begin
IrcMemo.Lines.Add(AMessage)
end;

Hmm, maybe someone knows here delphi and indy and can help me with that? :sq_yellow
 
Back