Code:
'To put an item in a ListView control:
'Add:
'Command Button - cmdAdd
'ListView Control - lvwList
'ImageList Control - ilsImages
'Now add to ilsImages some pics.
'Go to the Properties of ivwList and make the ListImage property of it: ilsImages
'Code:
Private Sub Command1_Click()
ivwList.ListItems.Add , , Example, 1
End Sub
'Explonation:
'We add a ListItema and if you don't want it to do anything so just leave the Index and Key blank and go straight to the Text. To give it an Image you give the Index number of the list in ilsImages. Get it?
Did it help?