Hello please can somebody help me to display a listview item to a textbox.
Hi Do u want to get all the times to Textbox or selected items? Code to get the selected item Text of ListView
If Not ListView1.SelectedItem Is Nothing Then Text1.Text = ListView1.SelectedItem.Text End If
Try this...
With MasterList.SelectedItem myID = .Text lblEmpNo = .SubItems(1) txtLastname = .SubItems(2) txtFirstname = .SubItems(3) txtMiddlename = .SubItems(4) end with