Detect if my application is running under the IDE "Delphi 2007 .Net" - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T05:58:45Z http://stackoverflow.com/feeds/question/1057672 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1057672/detect-if-my-application-is-running-under-the-ide-delphi-2007-net 2 Detect if my application is running under the IDE "Delphi 2007 .Net" RRUZ 2009-06-29T10:46:08Z 2009-08-12T04:54:26Z <p>Hi, How can I detect if my application is running under the IDE "Delphi 2007 .Net", there is something like DebugHook?</p> <p>Bye.</p> http://stackoverflow.com/questions/1057672/detect-if-my-application-is-running-under-the-ide-delphi-2007-net/1057849#1057849 2 Answer by Icebob for Detect if my application is running under the IDE "Delphi 2007 .Net" Icebob 2009-06-29T11:37:20Z 2009-06-29T11:37:20Z <p>The IsDebuggerPresent() WinAPI call.</p> http://stackoverflow.com/questions/1057672/detect-if-my-application-is-running-under-the-ide-delphi-2007-net/1061556#1061556 0 Answer by Alister for Detect if my application is running under the IDE "Delphi 2007 .Net" Alister 2009-06-30T03:18:13Z 2009-06-30T03:18:13Z <p>Something like:</p> <pre><code>Function IDEIsRunning : boolean; begin result := DebugHook &lt;&gt; 0; end; </code></pre> <p>Might Suit.</p> http://stackoverflow.com/questions/1057672/detect-if-my-application-is-running-under-the-ide-delphi-2007-net/1264269#1264269 0 Answer by RRUZ for Detect if my application is running under the IDE "Delphi 2007 .Net" RRUZ 2009-08-12T04:54:26Z 2009-08-12T04:54:26Z <p>Answer my own question.</p> <pre><code>uses System.Diagnostics; function IDEDelphiNetRunning:Boolean; Begin Result:=Debugger.IsAttached; End; </code></pre> <p>works fine for me.</p> <p>Bye.</p>