Separate UI from long running process

It is called "multi-threading" and "asynchronous" method calls. You do this with the easy to use BackgroundWorker component or create new Thread or use many of the common "Begin..." methods of different .Net Framework classes. Knowing "delegates" is also good for this.
 
Back
Top