show/hide this revision's text 3 deleted 219 characters in body

Start/Exit Method

// Get the parameters/arguments passed to program if any
string arguments = string.Empty;
string[] args = Environment.GetCommandLineArgs();
for (int i = 1; i < args.Length; i++) // args[0] is always exe path/filename
    arguments += args[i] + " ";

// Restart current application, with same arguments/parameters
Application.Exit();
System.Diagnostics.Process.Start(Application.ExecutablePath, arguments);

This seems to work better than Application.Restart();

Not sure how this handles if your program protects against multiple instance. Perhaps this change to the second part would handle that case?:

Application.Exit();     
System.Threading.Thread.Sleep(5000);
System.Diagnostics.Process.Start(Application.ExecutablePath, arguments);
My guess is you would be better off launching a second .exe which pauses and then starts your main application for you.

show/hide this revision's text 2 Added application arguments to the restart, noted multiple instances problem

Start/Exit Method

System.Diagnostics.Process.Start(Application.ExecutablePath)

// Get the parameters/arguments passed to program if any
string arguments = string.Empty;
string[] args = Environment.GetCommandLineArgs();
for (int i = 1; i < args.Length; i++) // args[0] is always exe path/filename
    arguments += args[i] + " ";

// Restart current application, with same arguments/parameters
Application.Exit();

This works every timeSystem.Diagnostics.Process.Start(Application.ExecutablePath, unlike arguments);

This seems to work better than Application.Restart();

Not sure how this handles if your program protects against multiple instance. Perhaps this change to the second part would handle that case?:

Application.Exit();     
System.Threading.Thread.Sleep(5000);
System.Diagnostics.Process.Start(Application.ExecutablePath, arguments);

My guess is you would be better off launching a second .exe which pauses and then starts your main application for you.

show/hide this revision's text 1

Start/Exit Method

System.Diagnostics.Process.Start(Application.ExecutablePath);
Application.Exit();

This works every time, unlike Application.Restart().