vote up 5 vote down star
3

When stepping a program in Delphi 7, the CPU window sometimes pops up and then steps through that instructions. I find this an annoyance as I wish to only step Pascal Code.

Does anyone know how to disable this CPU pop-up?

I would not be sorry if this window never ever shows.

It did not happen on Delphi 5 which was my previous IDE that I used for Delphi. I do use the Step-Over button mostly and only step-into when wanting to get into detail of a used (pascal) unit.

flag

4 Answers

vote up 4 vote down check

Delphi does not, by default, step into the CPU window. So the answer to your question is not that it can not be done. Maybe the question should be: What did I do that causes this.

EDIT: From the comments I understand that it happens when you press pause to break in the debugger. It is not strange that it stops on the exact place where it was executing when you hit pause. This could very well be in some windows code for which you do not have the source. By choosing "Run" -> "Run to Next Source Line" or Shift-F7 your program will execute a bit further until it hits some code for which it does have source code. This is the answer to your problem, but remember that you could have breaked in a spot where you never reach a next source line.

link|flag
I often click the pause button and end up immediately in the CPU window - it is difficult then to step to get to the next "pascal bit" as it often steps through endless reams of CPU addresses. This is what I want to go away. – mm2010 Nov 7 '08 at 13:03
Ah! But that is not what the question said. I updated my answer with a solution for this case. – Lars Truijens Nov 9 '08 at 18:20
vote up 1 vote down

I have the same problem. it is really annoying that wen i'm debugging somthing visual, the cpu window pops up and hides my app.

link|flag
vote up 1 vote down

it seems that i resolved it: added to the registry: HKCU\Software\Borland|Delphi\7.0\Debugging: EnableCPU (stringvalue):0

link|flag
It doesn't work on mine - It still breaks into the CPU windows when I "pause" – mm2010 Nov 15 '08 at 7:19
Maybe it does help for other things, so I give you a vote up. – mm2010 Nov 15 '08 at 7:21
vote up 0 vote down

You fall into the CPU-Window when there are no Debug-Informations for the current Unit.

Try to enable the Debug-DCU's (in Project/Options.../Compiler). If you haven't checked the other debug options, activate them also.

link|flag
That's not going to cure it. The debugger often steps into Windows code as well. No debug info for that unless you're running a debug enabled copy of Windows as well. – TomC Oct 7 '08 at 14:49
If the Debug-DCU's are enabled, you will first trace into the Windows-Unit of Borland/CodeGear. If you then step into an API-Call, Delphi will pop up the CPU-Window. Just step over the API-Call. – knight_killer Oct 7 '08 at 15:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.