vote up 3 vote down star

I want to wait for a process to finish, but process.WaitForExit() hangs my GUI. Is there an event-based way, or do I need to spawn a thread to block until exit, then delegate the event myself?

flag

3 Answers

vote up 4 vote down check

process.Exited += [EventHandler]

link|flag
1  
for the record, it appears you must also set c4_process.EnableRaisingEvents = true – Dustin Getz Jan 22 at 19:06
vote up 1 vote down
   System.Diagnostics.Process.Exited
link|flag
vote up 4 vote down

According to this link the WaitForExit() method is used to make the current thread wait until the associated process terminates. However, the Process does have an Exited event that you can hook into.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.