CANNOT debug

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I copy My.dll and My.PDB files into bin directory but still I CANNOT debug
the code I am geting message box "there is no source Code Availble for the
current
location" so can you help me how I do debug.

Thanks
 
what are you debugging with?
VS.NET? (why not just press F5) ?
the SDK WinGuiDbg? (load both the exe and the source files)
something else? (alien!)
 
I am using vs.net and Web Project but I canot debug, when I break point dll
code and I want go inside the dll I am geting one message box
"There is no source Code Availble for the current location"
So any one help me on that.

Thanks
--
-MrDotNet MCAD, MCSD
Sr. Software Engineer / Lead Architect



Lloyd Dupont said:
what are you debugging with?
VS.NET? (why not just press F5) ?
the SDK WinGuiDbg? (load both the exe and the source files)
something else? (alien!)
 
it looks like there is 2 DLLs involved, isn't there?
the .pdb is just the code for your DLL. you cannot go in other DLL!
but you can still get the stacktrace.

if you want to see the source code of the other dll, for such purpose as
beter understanding & coding, what about trying free decompiler, like
reflector (google for that!)

MrDotNet said:
I am using vs.net and Web Project but I canot debug, when I break point
dll
code and I want go inside the dll I am geting one message box
"There is no source Code Availble for the current location"
So any one help me on that.

Thanks
 
there is no 2 dll.

I have 2 files My.dll( that dll build in Debug mood) and My.pdb and I using
My.dll in web project and try to debug but I am geting the message "There is
no source Code Availble for the current location" and I canot go My.dll code.

If any one know how to debug then let me know.
 
Back
Top