Click to See Complete Forum and Search --> : VB DLL


January 16th, 2000, 01:36 AM
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????

Weasel
February 10th, 2000, 04:00 PM
Did you properly export the function? It *is* public?

Lothar Haensler
February 11th, 2000, 01:26 AM
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.