views:

298

answers:

2

How would I go about making a simple IRC client with these things

What I am using:

Nickname TextBox
Connect Button
Message TextBox
Send Message Button
Refresh Button
ListBox

Restrictions:

No commands at all just being able to send messages

I am using a listbox for recieving messages

A: 

You could use a client connection to create a raw connection to the IRC server, however, you will need to read up on the IRC protocol. Take a look at the links below:

Shiftbit
Thanks, I have already figured out how to make the client. Currently trying to make my ListBox autoscroll any ideas?
xZerox
A: 

Read the RFC listed above and then use the sockets component.

DaMartyr