Is there a way to trace through only project source in Delphi?

后端 未结 3 1278
野趣味
野趣味 2021-02-08 07:45

I\'m using Delphi 2010 and I\'m wondering if there\'s a way to trace through code which is in the project without tracing through calls to included VCLs.

For example - y

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-08 08:28

    Just to complete your options: If your libraries for some reason must be compiled with debug information (I usually use everything with debug info, including the VCL and RTL.) and you accidentally trace into a method you are not interested in, you can use Shift+F8 to run until the method returns to your code.

提交回复
热议问题