Hi,
This is a great utility. Thanks to the developers!
I would like to know how can I register its DLL? I would like to include this dll in a package. I tried using regsvr32 and regasm, but it failed. Any suggestion?
Thanks in advance,
Mosh.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This is not a COM dll, but a .NET dll. So you don't need regsvr32 to use it in .NET programs. If you want to use this in COM-based apps, then you need to create a wrapper. I can't never remember what exactly it is called, but I think it's a CCW (COM Callable Wrapper). Google for it. There's a lot of info on these.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi,
This is a great utility. Thanks to the developers!
I would like to know how can I register its DLL? I would like to include this dll in a package. I tried using regsvr32 and regasm, but it failed. Any suggestion?
Thanks in advance,
Mosh.
This is not a COM dll, but a .NET dll. So you don't need regsvr32 to use it in .NET programs. If you want to use this in COM-based apps, then you need to create a wrapper. I can't never remember what exactly it is called, but I think it's a CCW (COM Callable Wrapper). Google for it. There's a lot of info on these.