Al Bundy
Al Bundy

Reputation: 683

Can't use data breakpoint C++, Visual Studio 2013

I set debugger to Native Only, solution configurations is Debug but New Data Breakpoint... option is still greyed out and I can't use it. Can anyone prompt me what else I need to change ?

Upvotes: 24

Views: 16883

Answers (2)

Carl Clawson
Carl Clawson

Reputation: 121

Also be sure to look at Tools -> Options -> Debugging -> General and make sure "Enable address-level debugging" is checked.

Upvotes: 6

  1. Make sure active project debugger setting is "Native Only".
  2. Start the debugging with another ordinary breakpoint, then you can see "New Data Breakpoint" is clickable. (In other words, you must be inside debug mode to be able to create a data break point.)

Hope this helps..

Upvotes: 27

Related Questions