vote up 2 vote down star

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

Bye.

flag

3 Answers

vote up 2 vote down

The IsDebuggerPresent() WinAPI call.

link|flag
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 at 4:18
vote up 0 vote down

Something like:

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

Might Suit.

link|flag
Alister, DebugHook does not exist in "Delphi 2007.Net", so look for some alternative. – RRUZ Jun 30 at 3:39
vote up 0 vote down check

Answer my own question.

uses System.Diagnostics; 

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

works fine for me.

Bye.

link|flag

Your Answer

Get an OpenID
or

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