A long time ago I wrote a VB6 dll that is a wrapper to a full set of vendor dlls for an OMS system.
We are rewriting the system to C#. I instantiate two dlls. The first one works and the second doesn't. I can't find the error message for the second one.
protected NACMUTIL.SendEmail se;
Home grown dll
protected NACMCompliance.CheckOrder chkO;
This dll calls dlls in a vendor package.
se =
new NACMUTIL.SendEmail(); <---- This Works
chkO = new NACMCompliance.CheckOrder(); <--- This Doesn't Work
I am getting "{"Creating an instance of the COM component with CLSID {7BF57F67-E5E5-4A57-B8B3-21BF7B5B7F32} from the IClassFactory failed due to the following error: 84500001."}"
Any ideas?