IRC client question

crash4o4

Newcomer
Joined
Jul 17, 2003
Messages
1
Hello there I made a little rwc client to connect to this gamming channel, and I've been going crazy to get the side list to get the information of all the nicknames in the room.

I have attched the source code, it's form 4.

like I tried all sorts of methods, but I really have never used List boxes.

[edit] Don't post binaries [/edit]
 

Attachments

Last edited by a moderator:
This is the VB.NET forum... anyway....

VB6 lists boxes work like so:

Code:
Me.List1.Clear
Me.List1.Add "first Item"
Me.List1.Add "second Item"
 
Back
Top