tags:

views:

226

answers:

2

I use jacob last version and jacobgen.

I put all need dll in c:\windows\system32

I generated wrapper about dll by jacobgen.

But I got an exception. Google didn't help. :(

com.jacob.com.ComFailException: Can't find moniker

May be need registy dlls in windows registry?

+2  A: 

COM objects have to be registered to be found. It does not matter in which folder they reside.

Call

regsvr32 mycomdll.dll

on the dll.

Daniel
A: 

Thanks!!! It's helped me!!! :)

Tim
TYou should have posted this as an comment to my answer :). And btw. this would be a good time to accept my answer, because then the next question you post has a higher chance to get answered. People tend to ignore questions from users that don't accept answers.
Daniel