views:

141

answers:

2

Hey.

I have a ListView with 3 columns, how do I add specified text to the specified column I want? I've looked at the ..Add function, but it doesn't take the column index.. Thanks!

+1  A: 
Dim item as New ListViewItem(new String(){"One","Two","Three"})
ListView1.Items.Add(item)
adatapost
works for now, ty!
A: 

ListViewItem has a SubItems property that you can use to set the text of a specified column.

NascarEd