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

C / C++ / MFC

 
AnswerRe: Modal Child of a modeless dialog donot hide Pin
Maximilien26-Sep-06 8:14
Maximilien26-Sep-06 8:14 
GeneralRe: Modal Child of a modeless dialog donot hide Pin
pc_dev28-Sep-06 4:34
pc_dev28-Sep-06 4:34 
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 
Here is how in general a debugger workds: When you build your application in debug mode the executables and/or dlls (or other library files) contain a lot of extra information on top of the actual code. That information are like hyper links to the source C code. Imagine like saying "the following ten assembly commands are in that line of that cpp file". The debuger, in order to display you the source code, it needs the extra 'debug' information and access to the cpp source file.

When the debuger cannot find the source code it displays what it runs in assembly. If you are an assembly guru you might be able to debug the application with that. The usual reasons that goes to assembly are:

i. The application or parts of it are not build in debug mode. Thus, the debuger has no clue where the source is.

ii. The function you step in belongs to the compiler libraries. No company will give you the source C code of them so stepping into them means you go into assembly.

iii. You haven't informed your debuger where the C source code is. Perhaps that has to do with the project settings etc.

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 
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 

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.