hot questions tagged restarting - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T16:19:52Zhttp://stackoverflow.com/feeds/tag?tagnames=restarting&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application1How do I restart my C# WinForm Application?Noffie2009-04-22T21:52:20Z2009-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-2Is hibernation safe for desktop computers? [closed]anahita872009-05-02T17:12:42Z2009-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-emacs4Not restarting Emacsmemius2008-10-03T16:21:12Z2008-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-restarti3C# .Net exe doesn't close when PC is restarted, keeping the machine from restartingScottCher2008-10-03T18:47:28Z2008-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>