Hi,
I have a static BackgroundWorker, and I need to update a specific client calling an event, not all… Application.context do not exits anymore
how can I do?
best
Cristian
Hi Cristian,
If you want to make UI changes in the RunWorkerCompleted handler, you can use Application.Update to run it within the session’s context:
Application.Update(this, () => { AlertBox.Show("Completed!"); });
If you can provide more details or a small sample of what you’re trying to accomplish, I can offer more insight!
Best Regards,
Levie
Please login first to submit.