Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
function IsDebuggerPresent(): Boolean; external 'kernel32.dll';
procedure TForm1.Button1Click(Sender: TObject);
begin
if IsDebuggerPresent() = True then
ShowMessage( 'Debugger or IDE detected' )
else
ShowMessage( 'Debugger or IDE NOT detected' );
end;