Reputation: 33
How can I add skype people to a group using vb.Net? I use this:
msgl.Chat.SendMessage("/add " & t)
which works, but when I do it in a For statement, to add multiple people, it only adds one, example:
For r = 0 To s
msgl.Chat.SendMessage("/add " & t & r)
Next
Any help? I think I just search for an alternative.
Upvotes: 0
Views: 618
Reputation: 15813
In the second example with the For loop, you are adding t every time. Maybe use msgl.Chat.SendMessage("/add " & r)
.
Upvotes: 0