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????
Printable View
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????
Did you properly export the function? It *is* public?
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.