Question

I saved my VB-Express code as .dll and registered it with regasm and made a .tlb file.

But when I try to run a function from it in an Excel-modul I get: Run-time error ‘453’: Can’t find DLL entry point RegisterServiceProcess in kernel32

What step did I miss?

Was it helpful?

Solution

See http://richnewman.wordpress.com/2007/04/15/a-beginner’s-guide-to-calling-a-net-library-from-excel/ or better still try out ExcelDNA ( http://groups.google.com/group/ExcelDna )

OTHER TIPS

I think you're creating a .Net dll and trying to call it from a COM-oriented environment (VBA), which isn't going to work without help. If I'm guessing right, then you need to investigate the COM Interop elements of .Net: Google throws up lots of promising-looking links, one of which is this article.

It looks a bit unpleasant, but I expect the nastiness can be tucked away somewhere...

Try this Microsoft Knowledge Base article: Can't Run Macro That Calls 16-bit DLL in 32-bit MS Excel.

Do you have the proper rights to access the DLL?

Thanks for the input to everybody, you helped me a big step further. After following the guides you provided I got: Run-time error: '-2147024894' (80070002)': File or assembly name AssemblyName, or one of its dependencies, was not found.

But I could fix that with this Workaround.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top