Click here to Skip to main content
15,889,992 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
How can I populate a listview in virtual mode(I have several thousand of ListViewItem to add). I do not know how many items to be added in advance, I must add items asynchronously.
I added the method 'RetrieveVirtualItem', which is: 'e.Item = listOfItems[e.ItemIndex];'
Another class creates the listviewitem 'lvi' and adds it to listOfItems.
The following exception appears: 'Object reference not set to an instance of an object.', when I do: 'lvi.ListView.Invoke...' in the class that created the 'lvi'
Posted

1 solution

Take a look at A Much Easier to Use ListView[^]
which will do all this for you.
 
Share this answer
 
Comments
VJ Reddy 22-May-12 3:51am    
Good reference. 5!
Mehdi Gholam 22-May-12 4:31am    
Thanks VJ!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900