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
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.