COM DLLS are registered with regsvr33 command but not with gacutil, All you have to do is to install COM DLL using command line regsvr32 dllPathHere
or Programatically:
System.Diagnostics.Process.Start("regsvr32", pathHere);
or you can also addd COM DLL to your deployement project and set some proprty to register is as a COM component. (Sorry I dont exactly remember the name but you can check it in a minute hardly when creaitng a setup ptoject and adding dll to your installation Folder).
You would already be having Interop...... in you bin\Release folder that's are enough to deal with installed COM dll and provide you the interopability b/w 2.
Just try this.
I hope this will help.
Best Regards,
Rizwan aka RizwanSharp
|