a 3'rd question about the listview control
I get an error with this code
Label1 = ListView1.ListIndex
it tells me that listview is not an array
the following code is how I load images into the list view
ImageList1.ListImages.Add 1, "Pic1", LoadPicture("a:\Evil Empire.bmp"

ImageList1.ListImages.Add 2, "Pic2", LoadPicture("a:\00003046.jpg"

ImageList1.ListImages.Add 3, "Pic3", LoadPicture("a:\Lovers Rock.bmp"

ListView1.ListItems.Add 1, "Pic1", "ccc", 1
ListView1.ListItems.Add 2, "Pic2", "bbb", 2
ListView1.ListItems.Add 3, "Pic3", "aaa", 3
End Sub
any ideas why I am getting an error
what I want to do is have a user click on an image in the listview and display the index of that image in a label