Running sub in a separate process

  • Thread starter Thread starter John
  • Start date Start date
J

John

Hi

Is there a way to run a sub in a separate synchronous or asynchronous
process? One of the reason I would like to do that is I do not want this
process to effect the main app and also to cleanup the process resources
completely after it end.

Thanks

Regards
 
John,

I don't know about running a sub in a separate process, but you can run it
in a separate thread. An easy way to do that is to use the BackgroundWorker
component.

Kerry Moorman
 
Back
Top