Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim i As Integer
Dim lvitem As ListViewItem
For i = 1 To 5
lvitem = ListView1.Items.Add("1")
lvitem.SubItems.Add("sonia")
Next
End Sub
Above code add the five items in a listview with checboxes before each item.
When we run the form,all Checkboxes are unchecked.I want that by default all checkboxes are checked...
Ur help will be highly appreciated!!!!!!