vb Code:
dim items as new list(of listviewitem) for x as integer = 1 to 100 Dim str As String = "TEST" & x.tostring Dim itm As ListViewItem itm = New ListViewItem(str) itm.ImageIndex = 1 items.add(itm) next ListView1.Items.Addrange(items.toarray)
|
Results 1 to 6 of 6
Threaded View
|
Click Here to Expand Forum to Full Width |