Click here to Skip to main content
15,880,543 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Break point not hit error in VC2005 Pin
T210224-Jan-11 19:50
T210224-Jan-11 19:50 
GeneralMessage Removed Pin
24-Jan-11 20:07
Jia10024-Jan-11 20:07 
GeneralRe: Break point not hit error in VS2005 Pin
T210224-Jan-11 22:51
T210224-Jan-11 22:51 
AnswerRe: Break point not hit error in VS2005 Pin
Stefan_Lang27-Jan-11 2:33
Stefan_Lang27-Jan-11 2:33 
GeneralMessage Removed Pin
27-Jan-11 18:00
Jia10027-Jan-11 18:00 
GeneralRe: Break point not hit error in VS2005 Pin
Stefan_Lang27-Jan-11 22:34
Stefan_Lang27-Jan-11 22:34 
GeneralMessage Removed Pin
28-Jan-11 16:49
Jia10028-Jan-11 16:49 
GeneralRe: Break point not hit error in VS2005 Pin
Stefan_Lang30-Jan-11 22:59
Stefan_Lang30-Jan-11 22:59 
You mentioned an error message, namely that 'the symbols for this document were not loaded' or something like that. This indicates one of the following:

1. No debugging/symbolic information was generated
--> check the compiler settings of your project, and/or specifically for this file to see if debugging information is being generated (Properties -> C/C++ -> General -> Debug information format). You need 'Program Database' or 'Program Database for Edit and Continue. Everything else will not allow the use of breakpoints

2. The debugging information could not be found
--> check the ouput folder to see if the *.pdb file (program database) is present for your project. It contains the symbolic information needed to interpret and use breakpoints. Specifically check the settings for your output files (Properties -> C/C++ -> Output files), whether the folder indicated there is still correct.

3. You're trying to set breakpoints within code that is not part of your project (e.g. code that is part of a DLL that your project uses), and that code has not been generated with debug/symbolic information. In that case rebuilding your project won't help.

4. You're trying to set breakpoints within code that is not part of your project (e.g. code that is part of a DLL that your project uses), and that code has been generated with debug/symbolic information, but the program database for this DLL is not accessible. This can happen if you copied the DLL to another folder so the EXE can access it, but forgot to copy the PDB file as well, which contains the symbolic information.
QuestionHow to display a image in an Activex webpage Pin
simon alec smith24-Jan-11 9:48
simon alec smith24-Jan-11 9:48 
AnswerRe: How to display a image in an Activex webpage Pin
Richard MacCutchan24-Jan-11 10:27
mveRichard MacCutchan24-Jan-11 10:27 
GeneralRe: How to display a image in an Activex webpage Pin
yindoor24-Jan-11 16:42
yindoor24-Jan-11 16:42 
GeneralRe: How to display a image in an Activex webpage Pin
Richard MacCutchan24-Jan-11 21:17
mveRichard MacCutchan24-Jan-11 21:17 
QuestionTCP/IP client / serveur and Win7 Pin
shoppinit24-Jan-11 7:52
shoppinit24-Jan-11 7:52 
AnswerRe: TCP/IP client / serveur and Win7 Pin
TheGreatAndPowerfulOz24-Jan-11 8:22
TheGreatAndPowerfulOz24-Jan-11 8:22 
GeneralRe: TCP/IP client / serveur and Win7 Pin
shoppinit24-Jan-11 9:37
shoppinit24-Jan-11 9:37 
GeneralRe: TCP/IP client / serveur and Win7 Pin
TheGreatAndPowerfulOz25-Jan-11 13:31
TheGreatAndPowerfulOz25-Jan-11 13:31 
GeneralRe: TCP/IP client / serveur and Win7 Pin
shoppinit25-Jan-11 21:55
shoppinit25-Jan-11 21:55 
AnswerRe: TCP/IP client / serveur and Win7 Pin
Richard MacCutchan24-Jan-11 10:30
mveRichard MacCutchan24-Jan-11 10:30 
Questionwhat is the type of this pointer and also object? Pin
aesthetic.crazy24-Jan-11 4:50
aesthetic.crazy24-Jan-11 4:50 
AnswerRe: what is the type of this pointer and also object? Pin
Richard MacCutchan24-Jan-11 5:06
mveRichard MacCutchan24-Jan-11 5:06 
GeneralRe: what is the type of this pointer and also object? Pin
CPallini24-Jan-11 5:30
mveCPallini24-Jan-11 5:30 
GeneralRe: what is the type of this pointer and also object? Pin
aesthetic.crazy25-Jan-11 0:08
aesthetic.crazy25-Jan-11 0:08 
GeneralRe: what is the type of this pointer and also object? Pin
Richard MacCutchan25-Jan-11 2:31
mveRichard MacCutchan25-Jan-11 2:31 
AnswerRe: what is the type of this pointer and also object? Pin
Aescleal24-Jan-11 5:37
Aescleal24-Jan-11 5:37 
GeneralRe: what is the type of this pointer and also object? Pin
Chris Meech24-Jan-11 9:47
Chris Meech24-Jan-11 9:47 

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.