Click here to Skip to main content
15,907,905 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionRe: tab order Pin
mla15418-Aug-08 4:12
mla15418-Aug-08 4:12 
AnswerRe: tab order Pin
Hamid_RT18-Aug-08 4:25
Hamid_RT18-Aug-08 4:25 
GeneralRe: tab order Pin
mla15418-Aug-08 4:41
mla15418-Aug-08 4:41 
GeneralRe: tab order Pin
toxcct18-Aug-08 5:09
toxcct18-Aug-08 5:09 
GeneralRe: tab order Pin
mla15418-Aug-08 5:19
mla15418-Aug-08 5:19 
AnswerRe: tab order Pin
toxcct18-Aug-08 4:26
toxcct18-Aug-08 4:26 
AnswerRe: tab order Pin
Maximilien18-Aug-08 4:34
Maximilien18-Aug-08 4:34 
Questionpointer break points Pin
minkowski18-Aug-08 3:12
minkowski18-Aug-08 3:12 
Hello,

If I have the following code,

<br />
#include <iostream>  <br />
<br />
int main()<br />
{<br />
	int y = 6;<br />
	int *ptr;<br />
	ptr = &y;<br />
<br />
	int x = 7;<br />
	 <br />
	ptr = &x;<br />
<br />
      x = 8;<br />
	  std::cout << "hi";<br />
	  std::cout << "hello";<br />
	return 0;<br />
}<br />


is there a way to somehow change the break point properties so that it will stop where ptr changes from &y to &x ? The reason I wish to know this is lets say I have a massive call stack and somewhere in there my pointer is modified, I wish to locate this position in the stack then by setting a break point where the properties of my pointer change.

The platform I am using is visual studio .NET. I believe it is possible to do this in visual studion 6 C++ but I am unsure how to do this in visual studio .NET.

Thanks for any input.
AnswerRe: pointer break points Pin
toxcct18-Aug-08 3:18
toxcct18-Aug-08 3:18 
QuestionHow can Place a Static text over a .BMP ? Pin
Le@rner18-Aug-08 1:15
Le@rner18-Aug-08 1:15 
QuestionRe: How can Place a Static text over a .BMP ? Pin
David Crow18-Aug-08 3:51
David Crow18-Aug-08 3:51 
AnswerRe: How can Place a Static text over a .BMP ? Pin
Le@rner18-Aug-08 18:13
Le@rner18-Aug-08 18:13 
AnswerRe: How can Place a Static text over a .BMP ? Pin
Hamid_RT18-Aug-08 4:49
Hamid_RT18-Aug-08 4:49 
QuestionRe: How can Place a Static text over a .BMP ? Pin
David Crow18-Aug-08 5:24
David Crow18-Aug-08 5:24 
AnswerRe: How can Place a Static text over a .BMP ? Pin
Hamid_RT18-Aug-08 5:27
Hamid_RT18-Aug-08 5:27 
GeneralRe: How can Place a Static text over a .BMP ? Pin
ThatsAlok19-Aug-08 20:31
ThatsAlok19-Aug-08 20:31 
GeneralRe: How can Place a Static text over a .BMP ? Pin
Hamid_RT19-Aug-08 21:19
Hamid_RT19-Aug-08 21:19 
GeneralRe: How can Place a Static text over a .BMP ? Pin
ThatsAlok19-Aug-08 22:43
ThatsAlok19-Aug-08 22:43 
GeneralRe: How can Place a Static text over a .BMP ? Pin
Hamid_RT20-Aug-08 2:20
Hamid_RT20-Aug-08 2:20 
QuestionExact value of ULONGLONG and longdouble ! Pin
Le@rner18-Aug-08 0:22
Le@rner18-Aug-08 0:22 
AnswerRe: Exact value of ULONGLONG and longdouble ! PinPopular
Redeye9218-Aug-08 0:50
Redeye9218-Aug-08 0:50 
GeneralRe: Exact value of ULONGLONG and longdouble ! [modified] Pin
Cedric Moonen18-Aug-08 1:26
Cedric Moonen18-Aug-08 1:26 
AnswerRe: Exact value of ULONGLONG and longdouble ! [modified] Pin
Cedric Moonen18-Aug-08 0:56
Cedric Moonen18-Aug-08 0:56 
GeneralRe: Exact value of ULONGLONG and longdouble ! Pin
Mark Salsbery18-Aug-08 8:11
Mark Salsbery18-Aug-08 8:11 
GeneralRe: Exact value of ULONGLONG and longdouble ! Pin
Cedric Moonen18-Aug-08 8:27
Cedric Moonen18-Aug-08 8:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.