If you want to use a listview then heres a snippet to get you started reading values:
For Each row As ListViewItem In myListView.Items
For Each column As ListViewItem.ListViewSubIt
MsgBox(column.Text)
Next column
Next row
In this way you can see the relationship between a listview and a coordinate grid or spreadsheet where it can behave as rows and columns and your values are the intersection.
JOhn
Main Topics
Browse All Topics





by: jobrienctPosted on 2006-04-17 at 03:34:35ID: 16468117
Datagrid would probably be most appropriate for this.
/vb/net/gr id101.asp
heres a tutorial, have a look.
http://www.codeproject.com
John