You are viewing our Forum Archives. To view or take place in current topics click here.
Need help with Skype4COM!
Posted:

Need help with Skype4COM!Posted:

Jimmy-Neutron
  • Powerhouse
Status: Offline
Joined: Sep 02, 201112Year Member
Posts: 404
Reputation Power: 18
Status: Offline
Joined: Sep 02, 201112Year Member
Posts: 404
Reputation Power: 18
How would I make it so that a combo box would have all of the users contacts as it's items? I have been trying to figure this out for the past 15 minutes and its getting on my nerves. Please answer as soon as possible, thanks! Also this is a skype app being coded in VB.Net! (Visual Basic)
#2. Posted:
Alberici
  • TTG Addict
Status: Offline
Joined: Jun 26, 201211Year Member
Posts: 2,533
Reputation Power: 68
Status: Offline
Joined: Jun 26, 201211Year Member
Posts: 2,533
Reputation Power: 68
Sometimes VB messes up have you tryed to reload it? It screws up for me a lot.
*9dj9*
#3. Posted:
Jimmy-Neutron
  • Powerhouse
Status: Offline
Joined: Sep 02, 201112Year Member
Posts: 404
Reputation Power: 18
Status: Offline
Joined: Sep 02, 201112Year Member
Posts: 404
Reputation Power: 18
FullMetalJacket wrote Sometimes VB messes up have you tryed to reload it? It screws up for me a lot.
*9dj9*

VB isnt the problem. The problem is getting the program to import the users contacts into the combo box.
#4. Posted:
lee74saurusr3x
  • Ladder Climber
Status: Offline
Joined: Feb 18, 201014Year Member
Posts: 333
Reputation Power: 12
Status: Offline
Joined: Feb 18, 201014Year Member
Posts: 333
Reputation Power: 12
The problem is that he has no idea what he's doing and probably hasn't even bothered to google it first.
#5. Posted:
DimiPro
  • TTG Senior
Status: Offline
Joined: Oct 18, 201112Year Member
Posts: 1,200
Reputation Power: 48
Status: Offline
Joined: Oct 18, 201112Year Member
Posts: 1,200
Reputation Power: 48
i dont understand what you tryng to say
#6. Posted:
Z61
  • TTG Fanatic
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
1. Have skype as an object
2.:
For each User in Skype.Friends
combobox1.items.add(User)
Next
#7. Posted:
Jimmy-Neutron
  • Powerhouse
Status: Offline
Joined: Sep 02, 201112Year Member
Posts: 404
Reputation Power: 18
Status: Offline
Joined: Sep 02, 201112Year Member
Posts: 404
Reputation Power: 18
Z61 wrote 1. Have skype as an object
2.:
For each User in Skype.Friends
combobox1.items.add(User)
Next

I have encountered a problem with this...
[ Register or Signin to view external links. ]
How would I go about making it display actual names?
#8. Posted:
Z61
  • V5 Launch
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Jimmy-Neutron wrote
Z61 wrote 1. Have skype as an object
2.:
For each User in Skype.Friends
combobox1.items.add(User)
Next

I have encountered a problem with this...
[ Register or Signin to view external links. ]
How would I go about making it display actual names?

Here:
For each User in Skype.Friends
combobox1.items.add(User.handle)
Next
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.