hi
I want to add item to ListView1 with below code:

Code:
	   Dim Row As Integer = 1
                Dim MyItem = ListView1.Items.Add(Row)
                With MyItem
                    .SubItems.Add("Second Item")
                End With
but i get error "Item cannot be added to ListView." in "Dim MyItem = ListView1.Items.Add(Row)"

I use this code in other place of project (other forms) without any error.
wait for your idea