Home > Back-end >  How the single-step tracking in the VCL code
How the single-step tracking in the VCL code

Time:10-09

System generated code below
 
Application - & gt; The Initialize ();
Application - & gt; CreateForm ();
Application - & gt; The Run ();

In a single step debugging, unable to enter inside these functions,
After lookup to find the code in CBiulder6 \ Source \ VCL \ forms pas file
 
Procedure TApplication. Initalize;
The begin
If InitProc & lt;> Nil Then TProcedure (InitProc);
end;

Don't know where I find right, these are PAS file, not the CPP file, consult everybody find its way into the track?
In the process of program debugging, the function of the call stack is almost can't see, is full of assembly code, unable to enter the source code, is there a way to solve?
VC tried before, can see detailed MFC source code, just contact CBuilder, ask ace to give directions, thank you

CodePudding user response:

VCL code is in. Pas files, can't, is written in PASCAL
  • Related