In other apps where I've used the ListView i've added things like this.
VB Code:
Dim itmX as ListView Set itmX = ListView1.ListItems.Add itmX = Item1 itmX.SubItems(1) = Item2 itmX.SubItems(2) = Item3 'etc....
However in a new app i've set everything up the same but when I try to complie to EXE i get a message saying "Method or data member not found" and the below code is highlighted. I can't figure out why it's not working![]()
VB Code:
.SubItems(1)




Reply With Quote