VB.net 简单 IRC 客户端
我将如何用这些东西制作一个简单的 IRC 客户端
我正在使用什么:
Nickname TextBox
Connect Button
Message TextBox
Send Message Button
Refresh Button
ListBox
限制:
No commands at all just being able to send messages
我正在使用列表框来接收消息
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用客户端连接创建到 IRC 服务器的原始连接,但是,您需要阅读 IRC 协议。请查看以下链接:
http://msdn.microsoft.com/en-us/library/bew39x2a.aspx
http://irchelp.org/irchelp/rfc/rfc.html
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:
http://msdn.microsoft.com/en-us/library/bew39x2a.aspx
http://irchelp.org/irchelp/rfc/rfc.html
阅读上面列出的 RFC,然后使用套接字组件。
Read the RFC listed above and then use the sockets component.