I am using 5 BackgroundWorker objects running at the same time for a certain purpose, and all of them have to change the same label. How do I do that?
How do I modif
You could use the ReportProgress method in your BackgroundWorker where you want the label to change and write the actual code in ProgressChanged event handler.
BackgroundWorker
ProgressChanged