Does anyone know how can I edit a subitem on a listView? I've tried using this:
ListView1.SelectedItems[0].SubItems[1].Text = "Hello?";
But that doesn't work. I get the error "InvalidArgument=Value of '1' is not valid for 'index'". I've got two columns on the listview, so I figured the index of [1] would be the subitem.