Detect if my application is running under the IDE "Delphi 2007 .Net"
delphi, delphi-2007, delphi.net
Solution
Answer my own question.
uses System.Diagnostics;
function IDEDelphiNetRunning:Boolean;
Begin
Result:=Debugger.IsAttached;
End;
works fine for me.
Bye.
Problem
How can I detect if my application is running under the IDE "Delphi 2007 .Net", there is something like DebugHook? Bye.