Silv3rSurf3r_20 Posted June 24, 2003 Posted June 24, 2003 Hey All, How is it that i get the data from the first column's from a listview when i click on it... as in... can you help me out with the syntax for that. ClientID = SearchList.SelectedItems(i). ? Thanks Quote
Leaders dynamic_sysop Posted June 24, 2003 Leaders Posted June 24, 2003 Private Sub ListView1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles ListView1.Click Dim ClientID As String = ListView1.SelectedItems(0).Text MessageBox.Show(ClientID) End Sub Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.