my application contains ListView with files that i am handle and have 3 columns: file name, length and status.
inside my for loop i am handle file after file and want in this case change the status column from wait which is the value at the beginning to in process.
is it ossible to change one column ?
lvFiles is my ListView
for (int i = 0; i < lvFiles.Items.Count; i++)
{
//here i am do things with my file
}
here i am add files into my ListView:
ListViewItem item = new ListViewItem(new string[] { new FileInfo(filePath).Name, duration, "Waiting" });