Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>My copy-past:</p> <blockquote> <p>Avoiding Stepping Into Things</p> <p>It's often useful to avoid stepping into some common code like constructors or overloaded operators. autoexp.dat provides this capability. Add a section called "[ExecutionControl]". Add keys where the key is the function name and the value is "NoStepInto". You can specify an asterisk (*) as a wildcard as the first set of colons for a namespace or class.</p> <p>autoexp.dat is only read on Visual Studio's start up.</p> <p>To ignore the function myfunctionname, and all calls to the class CFoo:</p> <p>[ExecutionControl]</p> <p>myfunctionname=NoStepInto</p> <p>CFoo::*=NoStepInto</p> <p>To ignore construction and assignment of MFC CStrings: (Notice the extra = in CString::operator=.)</p> <p>[ExecutionControl]</p> <p>CString::CString=NoStepInto</p> <p>CString::operator==NoStepInto</p> <p>To ignore all ATL calls:</p> <p>[ExecutionControl] </p> <p>ATL::*=NoStepInto</p> </blockquote> <p>from this (<a href="http://www.highprogrammer.com/alan/windev/visualstudio.html" rel="noreferrer">http://www.highprogrammer.com/alan/windev/visualstudio.html</a>) article.</p> <p>Also you can use "Step Into Specific Function" from pupup menu.</p> <p><strong>Edit</strong> Sorry, it looks like that autoexp.dat doesn't works in vs 2003/2005. The same you can do with registry settings. <a href="http://groups.google.com/group/microsoft.public.vsnet.debugging/browse_thread/thread/b03dee5a626470c0/26addb1b539883e8" rel="noreferrer">http://groups.google.com/group/microsoft.public.vsnet.debugging/browse_thread/thread/b03dee5a626470c0/26addb1b539883e8</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload