Listview not working with my code (WHY)
Posted: Wed Jun 12, 2013 4:59 pm
hi im making a program and it uses a simple list view I have it half working basically it adds the subitem but not the
main item which is most important here is my code
PLEASE tell me you know how to fix it someone :P
main item which is most important here is my code
Code: Select all
Private Sub BackTrackButton9_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BackTrackButton9.Click
Dim lvi As New ListViewItem
lvi.Text = (BackTrackTextBox6.Text)
lvi.SubItems.Add(BackTrackTextBox8.Text)
BackTrackListView1.Items.Add(lvi)
End Sub
PLEASE tell me you know how to fix it someone :P