CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Nov 2006
    Posts
    19

    Question How can I view .dll file?

    I Want to know if their is any DLL code extractor/view that enable one to see hot .dll file was coded or linke to downlaod the program.

    THank U.

    Hakeem

  2. #2
    Join Date
    Feb 2003
    Location
    California
    Posts
    334

    Re: How can I view .dll file?

    It's not clear what you mean, but with Visual Studio, you can:

    1. Open a DLL in Binary mode, which will give you information about all its contents in binary form.
    2. Open the DLL in Resource mode, which will give you a view of all the resources compiled into the DLL.
    3. You can use the Debugger and attach a process with the DLL loaded. This will allow you to step through the binary code. The debugger will disassemble it for you, but it will be optimized, and unless you read Intel-based assembly code well, it probably won't tell you much.
    Henri Hein
    Principal Engineer, Propel
    Do not credit Propel with my views or opinions.

  3. #3
    Join Date
    Mar 2006
    Posts
    86

    Re: How can I view .dll file?

    Down one from http://www.nirsoft.net/utils/dll_export_viewer.html

    it is free of charges and I forgot whether source code is provided or not.....

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