Answered by:
To Register a DLL

Question
-
Hi All,
I am getting an error message while trying to register a third party DLL in my system using regsvr32 command. The error message is as follows
dllname.dll was loaded, but the DllRegisterServer entry point was not found.
here dllname.dll is the name of my DLL. Why this error message is coming. How can i register this DLL so that i can use the classes in this DLL.
Thanks & Regards
Shiyas
YesWednesday, January 12, 2011 1:14 PM
Answers
-
Hi Shiyas,
Could you please share some detail information about the dll, such as how do you develop the dll, how do you publish it. Agree with David, if it is developed by the third part, I think you may contact the third party.
Sincerely,
Bob Bao [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- Marked as answer by Shiyas pk Wednesday, January 19, 2011 5:52 AM
Friday, January 14, 2011 9:16 AM -
DLLs have to be written to support this method of registration in order to use it. In this case, you're installing this DLL incorrectly.
Consult the third party's documentation.
- Proposed as answer by David T. Hunt Wednesday, January 12, 2011 8:00 PM
- Marked as answer by Jie Bao Wednesday, January 19, 2011 1:50 AM
Wednesday, January 12, 2011 7:59 PM
All replies
-
DLLs have to be written to support this method of registration in order to use it. In this case, you're installing this DLL incorrectly.
Consult the third party's documentation.
- Proposed as answer by David T. Hunt Wednesday, January 12, 2011 8:00 PM
- Marked as answer by Jie Bao Wednesday, January 19, 2011 1:50 AM
Wednesday, January 12, 2011 7:59 PM -
Hi Shiyas,
Could you please share some detail information about the dll, such as how do you develop the dll, how do you publish it. Agree with David, if it is developed by the third part, I think you may contact the third party.
Sincerely,
Bob Bao [MSFT]
MSDN Community Support | Feedback to us
Get or Request Code Sample from Microsoft
Please remember to mark the replies as answers if they help and unmark them if they provide no help.
- Marked as answer by Shiyas pk Wednesday, January 19, 2011 5:52 AM
Friday, January 14, 2011 9:16 AM -
Hi,
You can sometimes generate errors like this when the DLL you are trying to register is missing it's dependencies. Try the DLL with Dependency Walker and see if you are missing any required files.
Hope that this helps.
Greg Lambert
Technology Director
ChangeBASE AOK Ltd.New Broad Street House
35 New Broad Street
London, EC2M 1NHTel: +44 (0)207 194 8072
Mob: +44 (0)797 434 7272
greg.lambert@changebase.com
www.changebase.com
http://aokcompat.blogspot.com/
gregFriday, February 4, 2011 6:23 PM