howester77
Active member
- Joined
- Aug 5, 2005
- Messages
- 38
- Programming Experience
- 5-10
I have a listview control, how do you save the contents of a listview into a .txt file?
For Each item As ListViewItem In Me.ListView1.Items
For Each subitem As ListViewItem.ListViewSubItem In item.SubItems
MessageBox.Show(subitem.Text)
Next subitem
Next item