The Road to Delphi

Delphi – Free Pascal – Oxygene

Detect if my application is running under the IDE “Delphi 2007 .Net”

Leave a comment

uses System.Diagnostics;

function IDEDelphiNetRunning:Boolean;
begin
Result:=Debugger.IsAttached;
end;
Unknown's avatar

Author: Rodrigo

Just another Delphi guy.

Leave a comment