Results 1 to 6 of 6

Thread: Messenger.MyContacts

  1. #1

    Thread Starter
    Member
    Join Date
    Jun 2004
    Posts
    35

    Messenger.MyContacts

    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...
    www.bassreflex.biz

  2. #2
    what is messenger?

  3. #3

    Thread Starter
    Member
    Join Date
    Jun 2004
    Posts
    35
    6.X
    www.bassreflex.biz

  4. #4
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974
    I don't use it (or have it installed), but the code should look more like this:
    VB Code:
    1. Dim i as Integer
    2. for i = 0 to messenger.mycontacts.count - 1
    3.   list1.additem messenger.mycontacts(i)
    4. next
    messenger.mycontacts(i) may need to be something more detailed, eg: messenger.mycontacts(i).name

  5. #5
    not the version, WHAT is messenger

  6. #6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width