Hi!
How do I get Messenger.Mycontacts (contacts in my msn) to a listbox...
I've tried
Dim i as integer
for i = 0 to messenger.mycontacts - 1
list1.additem i
next
but it aint working... :(
Printable View
Hi!
How do I get Messenger.Mycontacts (contacts in my msn) to a listbox...
I've tried
Dim i as integer
for i = 0 to messenger.mycontacts - 1
list1.additem i
next
but it aint working... :(
what is messenger?
6.X
I don't use it (or have it installed), but the code should look more like this:
messenger.mycontacts(i) may need to be something more detailed, eg: messenger.mycontacts(i).nameVB Code:
Dim i as Integer for i = 0 to messenger.mycontacts.count - 1 list1.additem messenger.mycontacts(i) next
not the version, WHAT is messenger
hes VERY wrong
read this: http://www.devhood.com/tutorials/tut...utorial_id=478