Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 vb.Net 将 Skype 人员添加到组中?我用这个:
msgl.Chat.SendMessage("/add " & t)
这可行,但是当我在 For 语句中执行此操作时,要添加多人,它只会添加一个,例如:
For r = 0 To s msgl.Chat.SendMessage("/add " & t & r) Next
有什么帮助吗?我想我只是在寻找替代方案。
在 For 循环的第二个示例中,您每次都添加 t。也许使用msgl.Chat.SendMessage("/add " & r).
msgl.Chat.SendMessage("/add " & r)