Hi, I'm a real beginner to VB so I'd appreciate the answers to be in simplistic form please! Basically, I need to know the code for getting items out of the listview.
I would like to write out, in an txt file, for the amount of items in the listview, the subitems of each item (if that makes sense?) I'm going to add the code as an EDIT as it doesn't seem to format it properly on here.
Thanks in advance for your answers!
2007-02-24
12:56:20
·
1 answers
·
asked by
dieselpower96
2
in
Computers & Internet
➔ Programming & Design
for i = 0 to (frmMainWindow.listview1.items.count)
for c = 0 to 9
CSVStream.Write(frmMainWindow.ListView1.items(i, c)
next
next
CSVStream.Close()
2007-02-24
12:56:48 ·
update #1