Assigning Properties to a BackgroundWorker

suggest change

This allows the BackgroundWorker to be cancelled in between tasks

bgWorker.WorkerSupportsCancellation = true;

This allows the worker to report progress between completion of tasks…

bgWorker.WorkerReportsProgress = true;

// this must also be used in conjunction with the ProgressChanged event

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents