Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart itself.
Application.Restart();
The above method has proven to be unreliable.
What is a better way to restart the application?
|
|
Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart itself.
The above method has proven to be unreliable. What is a better way to restart the application?
|
||||||
|
|
|
The selected answer doesn't work. According to the Process.Start() docs: "If the process is already running, no additional process resource is started..." This technique will work fine under the VS debugger (because VS does some kind of magic that causes Process.Start to think the process is not already running), but will fail when not run under the debugger. (Note that this may be OS-specific - I seem to remember that in some of my testing, it worked on either XP or Vista, but I may just be remembering running it under the debugger.) This technique is exactly the one used by the last programmer on the project on which I'm currently working, and I've been trying to find a workaround for this for quite some time. So far, I've only found one solution, and it just feels dirty and kludgy to me: start a 2nd application, that waits in the background for the first application to terminate, then re-launches the 1st application. I'm sure it would work, but, yuck. Edit: Using a 2nd application works. All I did in the second app was:
(This is a very simplified example. The real code has lots of sanity checking, error handling, etc) |
|||
|
|
|
Start/Exit Method
This seems to work better than Application.Restart(); Not sure how this handles if your program protects against multiple instance. My guess is you would be better off launching a second .exe which pauses and then starts your main application for you. |
||||||||||
|
|
|
You are forgetting the command-line options/parameters that were passed in to your currently running instance. If you don't pass those in, you are not doing a real restart. Set the For example, if your process was started as |
||
|