[Solved]ListView
Hey guys,
I've always had trouble with use ListViews.
Could anyone tell me How to properly add columns to a ListView and/or how to use it?
send me tv data via msn I'll help you
[php]Dim str(2) As String' Change 2 to the number of columns
Dim itm As ListViewItem
str(0) = "column 1"
str(1) = "column 2"
itm = New ListViewItem(str)
ListView1.Items.Add(itm)[/php]