vote up 1 vote down star

Is there a simple way to define a breakpoint, in Visual C++ 2005, that will pause the program whenever a certain value changes? I found Data Breakpoints, but those require a memory address, and provide no simple way to tie that to a variable.

flag

1 Answer

vote up 1 vote down check

"In the Address box, type a memory address or expression that evaluates to a memory address. For example, &avar to break when the contents of variable avar change."

http://msdn.microsoft.com/en-us/library/350dyxd0.aspx

link|flag
Thanks! I feel a bit stupid now. =) – Andrei Krotkov Jan 14 '09 at 20:23
I just wish the same thing was available for C# debugging. – edg Jan 15 '09 at 10:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.