View Single Post
Old 02-03-2005, 02:34 PM   #4 (permalink)
Iron_Cross
 
Ultra Techie

Join Date: Sep 2003

Location: Bamberg, Germany

Posts: 549

Iron_Cross

Send a message via ICQ to Iron_Cross Send a message via MSN to Iron_Cross Send a message via Yahoo to Iron_Cross
Default

Again, I've never used delphi, so you'd have to check for certain methods....In c# (which is very similar to delphi) you'd do:

Code:
string line = ircMain.ReadLn();
string usrName = line.SubString(0,line.IndexOf("!"));
string msg = line.SubString(line.IndexOf(":"),line.Length - 1);
rtfIRC.Lines.Append("<"+usrName+"> " + msg);
I'm not sure why it's freezing though...
__________________

See today\'s Penny-Arcade!(May contain foul lanuage)
Pain is weakness leaving the body.

PM Me for my MSN
Iron_Cross is offline