user3733328
user3733328

Reputation: 133

Delphi Executable starts in debug mode

Whenever a Executable is opened, the delphi IDE opens as like debug mode. what settings has changed in my IDE?

Can any one help me!

Update: 1. Build taken in other machine also causing this issue. How come a opening an EXE, starts the IDE?

  1. Default debugger was modified from vcjitdebugger to delphi debugger. So in case of exception delphi instance was started. It can me modified as below:

You need to delete the following registry key:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug\Debugger On a 64 bit system delete this key also:

HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug\Debugger

Upvotes: 0

Views: 233

Answers (1)

R. Hoek
R. Hoek

Reputation: 1106

At the top of your IDE, you have a combo box with the available layouts of the IDE. You probably have ‘Debug layout’ selected instead of ‘Default layout’ or so...

IDE Layout selection

When you have opened a project, select 'Default layout' and then it will persist that choice for the next time you open a project.

Upvotes: 3

Related Questions