Detect if my application is running under the IDE "Delphi 2007 .Net" - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T05:58:45Zhttp://stackoverflow.com/feeds/question/1057672http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1057672/detect-if-my-application-is-running-under-the-ide-delphi-2007-net2Detect if my application is running under the IDE "Delphi 2007 .Net"RRUZ2009-06-29T10:46:08Z2009-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#10578492Answer by Icebob for Detect if my application is running under the IDE "Delphi 2007 .Net"Icebob2009-06-29T11:37:20Z2009-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#10615560Answer by Alister for Detect if my application is running under the IDE "Delphi 2007 .Net"Alister2009-06-30T03:18:13Z2009-06-30T03:18:13Z<p>Something like:</p>
<pre><code>Function IDEIsRunning : boolean;
begin
result := DebugHook <> 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#12642690Answer by RRUZ for Detect if my application is running under the IDE "Delphi 2007 .Net"RRUZ2009-08-12T04:54:26Z2009-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>