browneyez12323
Technical User
Hi,
I am trying to debug a project that I had created. Basically, my problem is that once i run the debugger, my breakpoint does not get hit. The breakpoint gets bypassed. and When I put my mouse over the breakpoint I get the following error message:
Initially I checked the modules to see if the symbols were loaded for that and I noticed that for the dll files ntdll.dll and kernel32.dll the symbols were not loaded. However, the symbols were loaded for my project exe file.
In order to fix this problem and I did some google research and found out that I needed to add the following script:
Now after doing, this eventhough the symbols were loaded for the two dll files, the breakpoint is still getting bypassed. Can anyone please explain what is the problem? I would highly appreciate it. Thanks!
P.S: I am running a visual studio 2005 IDE
Regards..
I am trying to debug a project that I had created. Basically, my problem is that once i run the debugger, my breakpoint does not get hit. The breakpoint gets bypassed. and When I put my mouse over the breakpoint I get the following error message:
Code:
The breakpoint will not currently by hit. No symbols have been loaded for this document.
Initially I checked the modules to see if the symbols were loaded for that and I noticed that for the dll files ntdll.dll and kernel32.dll the symbols were not loaded. However, the symbols were loaded for my project exe file.
In order to fix this problem and I did some google research and found out that I needed to add the following script:
Code:
.sympath c:\mypdbs;srv*c:\msftpdbs*[URL unfurl="true"]http://msdl.microsoft.com/download/symbols[/URL]
Now after doing, this eventhough the symbols were loaded for the two dll files, the breakpoint is still getting bypassed. Can anyone please explain what is the problem? I would highly appreciate it. Thanks!
P.S: I am running a visual studio 2005 IDE
Regards..