Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi Everyone...

I have a Parallel.Foreach loop by which i load a listview , i have a button for stop the execution.Now my question is , when the execution is going on if i push the button then the process will be stopped .I found some code in net but nothing happens.

my code is
 private void btn_Click(object sender, EventArgs e)
{
    try
     {
              
                Parallel.ForEach(this.listView1.Items.Cast<ListViewItem>(),
                (list, loopState) =>
                {       
                  loopState.Stop();       
                });
     }
    catch
     {
     }
   }


what is missing in this code ?
please suggest somethings .

Thanking You
Regards
Animesh Datta
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900