April 30th, 2010 12:10 PM
Jonny -
This is basically what the BackgroundWorker is used for. Instead of creating all of the logic to fire off updates to the UI thread, the BackgroundWorker class has it all self contained. ...
April 30th, 2010 11:59 AM
It sounds like it would almost be easier to just report progress more often - that's basically what you're getting at, right? Or have a "basic" versus "verbose" switch for the background worker. So...
April 30th, 2010 11:40 AM
You could also just zip the executable and referenced assemblies and send it off. The person receiving it can just unzip it into a directory and run the executable without problems. This is easy...
April 30th, 2010 11:29 AM
Unfortunately, I don't know of any way to programmatically hook-up references via reflected assemblies. You could probably go about it two different ways:
1. The hurdle you are trying to...