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

Thread: VB DLL

  1. #1
    Guest

    VB DLL

    I Make ActiveX DLL in VB and when I call a function from this DLL
    I get Error "can't find entry point [function name] in [DLL name]"
    Whay????


  2. #2
    Join Date
    Feb 2000
    Location
    South Carolina, US
    Posts
    36

    Re: VB DLL

    Did you properly export the function? It *is* public?


  3. #3
    Join Date
    May 1999
    Posts
    3,332

    Re: VB DLL

    sounds like you tried to call a COM function by using Declare/Call syntax.
    That doesn't work for COM DLLs.

    You need to addd a reference to your ActiveX DLL to your project and call it by instantiating an object and call its methods.


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