CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Location
    Spain
    Posts
    335

    How to jum into one Dll when debugging ?

    Hi,

    I have a Dll and it's source ( and all pretty putted in the project settings), but when I debug the program I can not enter in the library code to see what is doing, Anybod knows the trick to di it ?

    Thanks, Bye !
    Braulio


  2. #2
    Join Date
    May 1999
    Posts
    318

    Re: How to jum into one Dll when debugging ?

    There is no problemn debugging a DLL under visual C.

    Be sure the DLL is compiled in debug mode.

    Be sure too that the sources correspond to the used dll. If you are not sure build again the dll in debug mode.

    Finally verify that the builded dll is the same as the loaded dll (for example the used dll may be in winnt\system32 and the builded one in an another folder).

    I hope these tips could help.



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