VB.net Simple IRC Client
How would I go about making a simple IRC client with thes开发者_Go百科e 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
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:
- MSDN: Client Connection http://msdn.microsoft.com/en-us/library/bew39x2a.aspx
- IRC Protocol: http://irchelp.org/irchelp/rfc/rfc.html
Read the RFC listed above and then use the sockets component.
精彩评论