Click here to Skip to main content
16,016,789 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionShared Memory as service and it needs to be accessed by all user id on windows 2000 or above. Pin
rengarajan7526-Sep-06 6:44
rengarajan7526-Sep-06 6:44 
QuestionDetermine associated program with file extension Pin
Mohammad A Gdeisat26-Sep-06 6:37
Mohammad A Gdeisat26-Sep-06 6:37 
QuestionRe: Determine associated program with file extension Pin
David Crow26-Sep-06 7:09
David Crow26-Sep-06 7:09 
AnswerRe: Determine associated program with file extension Pin
Mohammad A Gdeisat26-Sep-06 10:51
Mohammad A Gdeisat26-Sep-06 10:51 
Questiondebugger in visual c++ Pin
minkowski26-Sep-06 6:27
minkowski26-Sep-06 6:27 
AnswerRe: debugger in visual c++ Pin
Dimitris Vikeloudas26-Sep-06 6:41
Dimitris Vikeloudas26-Sep-06 6:41 
GeneralRe: debugger in visual c++ Pin
minkowski27-Sep-06 0:25
minkowski27-Sep-06 0:25 
GeneralRe: debugger in visual c++ Pin
Dimitris Vikeloudas27-Sep-06 1:42
Dimitris Vikeloudas27-Sep-06 1:42 
Well by pressing Shift-F11 returns to the caller. I found the usually this works.

Another trick is to use the variables debug window. The context list box contains the stack of the functions. You can see where in the code are you in any depth. Select the level that you 're interested and put a break point immediately after the current step. Then press F5 (run into cursor) to bring you there.

However, the best way is to know where not to step into. If your application is propery build in debug mode try not to step into functions that you do not recognise and especially those that they are known library functions (like printf, calloc etc.) Note that for some MFC classes/functions microsoft provides the source codeto assist you seeing the bug. You will know that by the name of the file that the debuger opens.
GeneralRe: debugger in visual c++ Pin
minkowski27-Sep-06 2:43
minkowski27-Sep-06 2:43 
GeneralRe: debugger in visual c++ Pin
Dimitris Vikeloudas27-Sep-06 4:10
Dimitris Vikeloudas27-Sep-06 4:10 
GeneralRe: debugger in visual c++ Pin
minkowski27-Sep-06 4:51
minkowski27-Sep-06 4:51 
QuestionZooming a text Pin
Dimitris Vikeloudas26-Sep-06 6:04
Dimitris Vikeloudas26-Sep-06 6:04 
AnswerRe: Zooming a text Pin
Chris Meech26-Sep-06 9:54
Chris Meech26-Sep-06 9:54 
GeneralRe: Zooming a text Pin
Dimitris Vikeloudas26-Sep-06 22:14
Dimitris Vikeloudas26-Sep-06 22:14 
GeneralRe: Zooming a text Pin
Chris Meech27-Sep-06 4:49
Chris Meech27-Sep-06 4:49 
QuestionCString memory allocation question Pin
KellyR26-Sep-06 5:30
KellyR26-Sep-06 5:30 
AnswerRe: CString memory allocation question Pin
David Crow26-Sep-06 5:31
David Crow26-Sep-06 5:31 
GeneralRe: CString memory allocation question Pin
KellyR26-Sep-06 5:35
KellyR26-Sep-06 5:35 
QuestionConverting character to its ascii Pin
samita_friendly26-Sep-06 5:22
samita_friendly26-Sep-06 5:22 
AnswerRe: Converting character to its ascii Pin
toxcct26-Sep-06 5:25
toxcct26-Sep-06 5:25 
GeneralRe: Converting character to its ascii Pin
samita_friendly26-Sep-06 5:26
samita_friendly26-Sep-06 5:26 
QuestionRe: Converting character to its ascii Pin
David Crow26-Sep-06 5:32
David Crow26-Sep-06 5:32 
AnswerRe: Converting character to its ascii Pin
KellyR26-Sep-06 5:33
KellyR26-Sep-06 5:33 
GeneralRe: Converting character to its ascii Pin
samita_friendly26-Sep-06 5:35
samita_friendly26-Sep-06 5:35 
GeneralRe: Converting character to its ascii Pin
KellyR26-Sep-06 5:39
KellyR26-Sep-06 5:39 

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.