Reputation: 33
I'm a .NET developer, but I have got a quest - I must find errors in a Delphi project.
After opening a project (Borland Delphi 7) and trying to debug it ('Run' menu), I've noticed all debugging options are inactive (gray).
How can I make it usable?
Upvotes: 3
Views: 7962
Reputation: 11
Tools-->Debugger Options Make sure integrated debugging is checked.
Upvotes: 1
Reputation: 15334
I'm not sure why the pause button doesn't work, but I have seen Delphi 7 get "confused" and refuse to stop on legitimate breakpoints before.
I hope this helps.
Upvotes: 12
Reputation: 84540
Hard to tell just from that description, but here are a few pointers.
Once you've done that you should be able to run and debug the app.
Upvotes: 1
Reputation: 72504
The debugger is always active, unless it is explicitly deactivated. Just run the application and the inactive menu items will become active. (For some options you have to have to pause the running application)
Just try pressing F8. This will run the application and pause at the first line of executable code and most of the debugging items will become active.
Upvotes: 1