Click here to Skip to main content
15,908,274 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: deletion of thread pointer Pin
CPallini24-Sep-08 0:59
mveCPallini24-Sep-08 0:59 
AnswerRe: deletion of thread pointer Pin
perle124-Sep-08 1:14
perle124-Sep-08 1:14 
AnswerRe: deletion of thread pointer Pin
Roger Stoltz24-Sep-08 1:51
Roger Stoltz24-Sep-08 1:51 
QuestionC2668 Pin
T.RATHA KRISHNAN24-Sep-08 0:30
T.RATHA KRISHNAN24-Sep-08 0:30 
AnswerRe: C2668 Pin
toxcct24-Sep-08 0:36
toxcct24-Sep-08 0:36 
QuestionRe: C2668 Pin
T.RATHA KRISHNAN24-Sep-08 0:41
T.RATHA KRISHNAN24-Sep-08 0:41 
AnswerRe: C2668 [modified] Pin
SandipG 24-Sep-08 1:06
SandipG 24-Sep-08 1:06 
GeneralRe: C2668 Pin
T.RATHA KRISHNAN24-Sep-08 1:20
T.RATHA KRISHNAN24-Sep-08 1:20 
GeneralRe: C2668 Pin
SandipG 24-Sep-08 1:21
SandipG 24-Sep-08 1:21 
AnswerRe: C2668 Pin
toxcct24-Sep-08 4:22
toxcct24-Sep-08 4:22 
GeneralRe: C2668 [modified] Pin
SandipG 24-Sep-08 1:03
SandipG 24-Sep-08 1:03 
QuestionRe: C2668 Pin
Mahesh Kulkarni24-Sep-08 0:48
Mahesh Kulkarni24-Sep-08 0:48 
AnswerRe: C2668 Pin
toxcct24-Sep-08 0:56
toxcct24-Sep-08 0:56 
AnswerRe: C2668 Pin
SandipG 24-Sep-08 0:57
SandipG 24-Sep-08 0:57 
AnswerRe: C2668 Pin
sashoalm24-Sep-08 1:01
sashoalm24-Sep-08 1:01 
GeneralRe: C2668 Pin
T.RATHA KRISHNAN24-Sep-08 1:18
T.RATHA KRISHNAN24-Sep-08 1:18 
QuestionRe: C2668 Pin
Matthew Faithfull24-Sep-08 1:36
Matthew Faithfull24-Sep-08 1:36 
AnswerRe: C2668 Pin
SandipG 24-Sep-08 1:45
SandipG 24-Sep-08 1:45 
QuestionDebugging issue to watch variable values Pin
George_George24-Sep-08 0:03
George_George24-Sep-08 0:03 
AnswerRe: Debugging issue to watch variable values [modified] Pin
kapardhi24-Sep-08 1:36
kapardhi24-Sep-08 1:36 
GeneralRe: Debugging issue to watch variable values Pin
George_George24-Sep-08 20:17
George_George24-Sep-08 20:17 
AnswerRe: Debugging issue to watch variable values Pin
Alan Balkany24-Sep-08 11:02
Alan Balkany24-Sep-08 11:02 
You may be able to use the "Stakeout" debugging pattern: Get the address of the variable you want to monitor, then dereference this address in your watch window.

This is useful to monitor variables that go out of scope.

For example, enter "&foo" in the watch window to get the address of foo. Say it's 0x00112233.

Enter *(int *) 0x00112233 in the watch window. This will display the integer at this address.
GeneralRe: Debugging issue to watch variable values Pin
George_George24-Sep-08 20:15
George_George24-Sep-08 20:15 
GeneralRe: Debugging issue to watch variable values Pin
Alan Balkany25-Sep-08 3:23
Alan Balkany25-Sep-08 3:23 
GeneralRe: Debugging issue to watch variable values Pin
George_George25-Sep-08 21:20
George_George25-Sep-08 21:20 

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.