I have a listview set to details view and im using the following code on Form Load to add items and subitems to the list but I would like to have a small image in front of each item but I can't figure out the code to do that
Visual Basic:
ListView1.Items.Add("Overall")
ListView1.Items(0).SubItems.Add(SubVals(0))
ListView1.Items(0).SubItems.Add(SubVals(1))
ListView1.Items(0).SubItems.Add(SubVals(2))
ListView1.Items.Add("Attack")
ListView1.Items(1).SubItems.Add(SubVals(0))
ListView1.Items(1).SubItems.Add(SubVals(1))
ListView1.Items(1).SubItems.Add(SubVals(2))