Hi there.
I'm in the process of making an IRC client in Delphi 7, using the Indy Client component for IRC.
I've got as far with the display as being able to see the raw data by using:
Code:
procedure TfrmMain.ircMainMessage(Sender: TObject; AUser: TIdIRCUser;
AChannel: TIdIRCChannel; Content: String);
begin
rtfIRC.Lines.Append(ircMain.ReadLn());
end;
However this isn't what I want to be seeing.
How could I possibly parse this to display similarly to:
<Username> Message
And how would I also go about parsing actions differently?
Thanks in advance,
Nathalie L. Agôn