I have a listView. I want to add data in row number one, column number two. I have tried the following:
listView1.Items[0].Subitems[1].Text = "my data";
I get an error like this '0' is not a valid index. Then i tried this:
if (listViewDownloadList.SelectedItems.Count == -1)
{
listViewDownloadList.Items[0].SubItems[1].Text = "Hello";
}
Now, nothing is happening. No insert, no error.
But it doesn't work. Can you help me out here?

items[0].Subitems[1]. I want to add data in that position. how can i do that?