|
-
January 16th, 2000, 02:36 AM
#1
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????
-
February 10th, 2000, 05:00 PM
#2
Re: VB DLL
Did you properly export the function? It *is* public?
-
February 11th, 2000, 02:26 AM
#3
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|