
Signature
Browse http://connect.microsoft.com/VisualStudio/feedback/ and vote.
http://www.peterRitchie.com/blog/
Microsoft MVP, Visual Developer - Visual C#
On May 27, 11:21 am, Peter Ritchie [C# MVP] <PRS...@newsgroups.nospam>
wrote:
> > Using VS2005, I am trying to disable stepping into the operator new calls.
>
> > What NoStepInto entry should I put into the registry?
> > I tried "operator new=NoStepInto" but it does not seem to be working.
>
> What registry entry and you modifying?
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\NativeDE
\StepOver]
"10"="operator new=NoStepInto"
Alex O. - 28 May 2007 20:32 GMT
> On May 27, 11:21 am, Peter Ritchie [C# MVP] <PRS...@newsgroups.nospam>
> wrote:
[quoted text clipped - 8 lines]
> [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\VisualStudio\8.0\NativeDE\StepOver]
> "10"="operator new=NoStepInto"
Forgot to mention that other entries work OK, it's just the "operator
new" that I have problems with.
Alex O. - 11 Jun 2007 18:22 GMT
Anyone?
> > On May 27, 11:21 am, Peter Ritchie [C# MVP] <PRS...@newsgroups.nospam>
> > wrote:
[quoted text clipped - 11 lines]
> Forgot to mention that other entries work OK, it's just the "operator
> new" that I have problems with.
Oleg Starodumov - 12 Jun 2007 15:28 GMT
"operator new=NoStepInto" should usually be enough.
If you step into the operator new and look at its name in Disassembly window
or in Call Stack window, how exactly will its name be spelled?

Signature
Oleg
[VC++ MVP http://www.debuginfo.com/]
Alex O. - 16 Jun 2007 13:16 GMT
On Jun 12, 10:28 am, "Oleg Starodumov" <com-dot-debuginfo-at-oleg>
wrote:
> "operator new=NoStepInto" should usually be enough.
>
> If you step into the operator new and look at its name in Disassembly window
> or in Call Stack window, how exactly will its name be spelled?
"operator new"
Seems to be working some of the times. Weird.