Which is the fastes and smoothest way to add an item with its subitems into a ListView control?
Is there a way to automatically add subitems to the last added item in the list?
Printable View
Which is the fastes and smoothest way to add an item with its subitems into a ListView control?
Is there a way to automatically add subitems to the last added item in the list?
If you declare and add a listview item you can easaly change all kinds of properties afterwards.....
Ex:
Code:Dim lvi As New ListViewItem("Text")
ListView1.Items.Add(lvi)
lvi.SubItems.Add("Text again")
lvi.ForeColor = Color.Green