CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5

Thread: Help with Dll

  1. #1
    Join Date
    Apr 2005
    Location
    Florida
    Posts
    9

    Smile Help with Dll

    I try to test my dll with vb6 and I get this error.

    Can't find DLL Entry point.

    Can anyone help me out?

    Thanks a lot.

  2. #2
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: Help with Dll

    From a Visual Studio CMD prompt run "Dumpbin /Exports nameof.dll" to display what your dll has exported.

    Arjay

  3. #3
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: Help with Dll

    In addition, you might want to take a look at the following FAQ...

  4. #4
    Join Date
    Apr 2005
    Posts
    24

    Re: Help with Dll

    For those who can't stand command-line tools - PE Explorer will show up both entry points and export/import lists in a more friendly way.

    PE Explorer home page: http://www.heaventools.com

    Hope it helps

    WBR,
    Artt

  5. #5
    Join Date
    May 2000
    Location
    KY, USA
    Posts
    18,652

    Re: Help with Dll

    Quote Originally Posted by Artt
    For those who can't stand command-line tools - PE Explorer will show up both entry points and export/import lists in a more friendly way.
    Which comes at a $129 value...if you need a free GUI one...use Dependency Walker...which does not have all of the functionality....however, in this regard (dll) it does...

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