所以我一直在 VB.NET 中开发这个程序,它可以获取用户的 Skype 信息,例如句柄、生日、电话号码等。但是我找不到将特定用户信息加载到 ListBox 中的方法。这是我的代码
Private Sub Button8_Click(sender As Object, e As EventArgs) Handles Button8.Click
For Each hmm As SKYPE4COMLib.User In Skype.Friends
ListBox2.Items.Add("<>-----------------------------------------<>")
ListBox2.Items.Add(hmm.FullName)
ListBox2.Items.Add(hmm.Handle)
ListBox2.Items.Add(hmm.Sex)
ListBox2.Items.Add(hmm.PhoneHome + hmm.PhoneMobile + hmm.PhoneOffice)
ListBox2.Items.Add(hmm.Aliases)
ListBox2.Items.Add(hmm.Birthday)
ListBox2.Items.Add(hmm.City)
ListBox2.Items.Add(hmm.Country)
ListBox2.Items.Add(hmm.Language)
ListBox2.Items.Add(("Friends: ") & hmm.NumberOfAuthBuddies)
ListBox2.Items.Add("<>-----------------------------------------<>")
Next
End Sub
唯一的问题是,当我单击 Button8 时,它会将我所有的联系人信息加载到 ListBox 中,我只想将用户名的信息加载到我的 TextBox3 中。
这是一个视觉效果:
图中的TextBox为TextBox3,带有文本“Get”的按钮为Button8,ListBox为ListBox2。如何让 ListBox2 从 TextBox3 加载用户名信息?