"The breakpoint will currently not be hit. No symbols have been loaded for document"

karthikshane

Member
Joined
May 15, 2006
Messages
12
Programming Experience
Beginner
"The breakpoint will currently not be hit. No symbols have been loaded for document"

Hi,

The above is the error i get when i keep a breakpoint in a page while working in the IDE. What is the solution for this problem?? I dont get this very often, but still i get it.

Need help from experts.

Thanks
 
Well, i am not an expert but i can try if you don't mind of course :)

means i just searched google and i came with this:

It sounds like the symbols you have are not lining up with the binaries
you're generating. Do the following:

1. Verify that you are in debug mode and not release mode.
2. Verify that the timestamp of the .pdb file is the same as the .dll or
.exe that you're generating. If they are not, remove all of the binaries
and recompile your entire solution.
3. If the additional assemblies you are trying to debug are not part of
your solution (i.e. other projects), go under the properties for the
solution and be sure to include the "Debug Source Files" and "Debug
Symbol Files" locations of the additional assemblies you're trying to debug.
Give it a try ... maybe you will even fix that :D
Regards
palec.gif
 
9 times out of 10 it's because the IDE is in Release mode instead of Debug.

#2 above is a new one to me, but worth noting for future reference.
#3 seems a bit weird, since in order to set the break point, wouldn't the source code need to be loaded?


Start with #1, if that doesn't work, then try #2.

-tg
 
now it seems to work

Thanks kulrom and techgnome.

Now the problem is solved. As u said, it was already in debug mode.

I had 5 seperate projects. I deleted this particular binary and recompiled and pasted/deployed it in the server. Then it seems to work fine.

Thanks.

NOTE : kulrom s photo reminds me of Russian tennis star Yevgeny Kafelnikov.
 
kulrom said:
How about the TechGnome's photo? hahaha ... no offense TG it was just a joke ;)
Wouldn't know.... never met Yevgeny Kafelnikov.

:p

-tg
 
yes, kafelnikov is blonde, kulrom. U may try out Shane Lee , cricketer from australia. He is blonde too, but he definitely looks like you.

Shane.
 
Back
Top