How can I detect if my application is running under the IDE "Delphi 2007 .Net", there is something like DebugHook?
Bye.
|
How can I detect if my application is running under the IDE "Delphi 2007 .Net", there is something like DebugHook? Bye.
| |||
|
feedback
|
|
The IsDebuggerPresent() WinAPI call. | |||
feedback
|
|
Something like:
Might Suit. | |||||
feedback
|
|
Answer my own question.
works fine for me. Bye. | |||
|
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"; | |||
|
feedback
|