feurich Posted September 17, 2004 Posted September 17, 2004 Hi there, I'm writing a import module that imports documents and indexfields into Sharepoint Portal service. This import module is a DLL and is being called from an other application. Now i have written the skeleten of the DLL with all the function in it, just to see if all the functions inside the DLL are correctly being adressed. But the problem is that i am not able to register the DLL on the system. I'm trying to register is t with regsvr32. but i get the folowing error message " SPS2003Rel.dll was loaded, but the Dllregisterservice entry point was not found. This file cannot be registered". This is the first time i have written a dll in VB.NET am doing something wrong . Feurich Quote Trust the Universe
Administrators PlausiblyDamp Posted September 17, 2004 Administrators Posted September 17, 2004 .Net dlls cannot be registered with regsvr32 - that is for registering COM dlls. .Net dlls do not need to be registered the same as VB6 / COM files. If you want your .Net dll to appear to be a COM dll then there is a bit more work involved - if you search these forums you should find some information on how to do that. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.