hot questions tagged restarting - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T16:19:52Z http://stackoverflow.com/feeds/tag?tagnames=restarting&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application 1 How do I restart my C# WinForm Application? Noffie 2009-04-22T21:52:20Z 2009-09-09T20:11:09Z <p>Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart itself.</p> <pre><code>Application.Restart(); </code></pre> <p>The above method has <a href="http://stackoverflow.com/questions/95098/why-is-application-restart-not-reliable">proven to be unreliable</a>.</p> <p>What is a better way to restart the application?</p> http://stackoverflow.com/questions/815219/is-hibernation-safe-for-desktop-computers -2 Is hibernation safe for desktop computers? [closed] anahita87 2009-05-02T17:12:42Z 2009-05-02T17:30:23Z <p>I'm using Windows XP SP3, with a 1.24GB RAM. I want to know whether the hibernation mode is safe for a <strong>Desktop computer</strong> and is it safe to do it all the time?</p> http://stackoverflow.com/questions/167705/not-restarting-emacs 4 Not restarting Emacs memius 2008-10-03T16:21:12Z 2008-10-05T21:31:51Z <p>How do I load the edited .emacs file without restarting Emacs?</p> http://stackoverflow.com/questions/168317/c-net-exe-doesnt-close-when-pc-is-restarted-keeping-the-machine-from-restarti 3 C# .Net exe doesn't close when PC is restarted, keeping the machine from restarting ScottCher 2008-10-03T18:47:28Z 2008-10-27T20:53:15Z <p>We have a SmartClient built in C# that stubornly remains open when the PC its running on is being restarted. This halts the restart process unless the user first closes the SmartClient or there is some other manual intervention.</p> <p>This is causing problems when the infrastructure team remotely installs new software that requires a machine reboot.</p> <p>Any ideas for getting the SmartClient app to recognize the shutdown/restart event from Windows and gracefully kill itself?</p> <p><strong>UPDATE:</strong> This is a highly threaded application with multiple gui threads. yes, multiple gui threads. Its really a consolidation of many project that in and of themselves could be standalone applications - all of which are launched and managed from a single exe that centralizes those management methods and keeps track of those threads. I don't believe using background threads is an option.</p>