CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 1999
    Location
    Miami, FL
    Posts
    67

    Re: Strange, Strange debugger behavior...break points on blank/commented out lines?



    This looks like the problem.


    I recommend that you always build whatever binaries you're going to debug (unless it's a third party binary like from Microsoft). In other words, if someone else made some code changes and then created a debug version of the DLL and/or EXE, don't use those same files when debugging on your machine. Instead, just get the source code and rebuild it on your machine to generate your own DLL and/or EXE files. This should create a proper set of PDB files that match to your own source code.


    Good luck!



  2. #2
    Join Date
    Sep 2001
    Posts
    4

    Re: Strange, Strange debugger behavior...break points on blank/commented out lines?


    i suggest you delete all the dlls that u want to debug instead of the dlls in ur working directory.....
    or you check the path of exe u are debugging in ur project settings.
    avoid having multiple copies of the dlls u want to debug on ur disk.
    if this doesnt work only option is rebuild.
    since i dont know ur actual environment ,this is just a suggestion.Hope this helps.





Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured