Anyone? o_O
Printable View
Anyone? o_O
You can make one yourself. The idea would be save each row in a line in a text file. Then use a character (or combination of characters) that wouldn't be in any of the columns of the listview and join all the columns' text with that character(s). Then when you read the file you split by that and add again to the listview.
Or use an XML file to save it in; xml is perfectly suited for tasks like this one. You can then easily save things like the key, tooltiptext etc. as well. :)
Or property bags...
I would go for XML though.
But for this you either need to write your own XML reader/writer, or make a reference in your app to MS XML objects.
Woka