How can I detect if my application is running under the IDE "Delphi 2007 .Net", there is something like DebugHook?

Bye.

link|improve this question

feedback

4 Answers

The IsDebuggerPresent() WinAPI call.

link|improve this answer
This isn't really an answer to the question though, as running the application under Delphi and running it under any other debugger can not be distinguished this way. Maybe that's not important for the OP, but the question should have been worded differently then. Also there is Debugger.IsAttached in System.Diagnostics, no need to call the Windows API. – mghie Jun 30 '09 at 4:18
feedback

Something like:

Function IDEIsRunning : boolean;
begin
  result := DebugHook <> 0;
end;

Might Suit.

link|improve this answer
Alister, DebugHook does not exist in "Delphi 2007.Net", so look for some alternative. – RRUZ Jun 30 '09 at 3:39
Well, I was searching for how to do exactly the same thing as OP... but in Delphi 5. So naturally this worked perfectly for me. :) +1 – Craig Young Jun 14 '10 at 15:10
feedback
up vote 1 down vote accepted

Answer my own question.

uses System.Diagnostics; 

function IDEDelphiNetRunning:Boolean; 
Begin 
Result:=Debugger.IsAttached; 
End;

works fine for me.

Bye.

link|improve this answer
feedback

I found this more general answer, from http://edn.embarcadero.com/article/26659

Use the IsDebuggerPresent() WinAPI call. Example in C++:

if (IsDebuggerPresent()) Label1->Caption = "debug"; else Label1->Caption = "no debug";

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.