Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

registering dll problem

Status
Not open for further replies.

bernardsylunar

Programmer
Feb 9, 2005
25
PH
hi!

i got the following error when i try to register my dll:

Missing entry:DllRegisterServer

when i compile my dll. i can call it from my VB application and i have used the functions inside my dll file.

pls help...

thanks in advance...

ynad
----
It is foolish to listen to someone who will not listen to you.
 
Is it a normal .DLL? If so, you cannot register it. Only COM .DLLs can be registered.
If you do not know what kind of .DLL you've got, this will help you find out:
1) If you use your .DLL by calling LoadLibrary and then GetProcAddress for each method inside the .DLL you need to use, then you have a regular .DLL
2) If you need to use CoInitialize and then CoCreateInstance, QueryInterface (etc...) then you've got an in-process COM server (a COM .DLL).
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top