Hi,

I have a component(dll) that calls another component(dll), but i am getting the error "429 - cannot create object" when i call a method. For Example:

In the DLL that calls another DLL

VB Code:
  1. Implements ObjectControl
  2. Private objContext As ObjectContext
  3.  
  4. Public Const objNotaFiscal As String = "SynchroBusiness.cNotaFiscal"
  5.  
  6. Dim oINotaFiscal As INotaFiscal
  7.  
  8. Set oINotaFiscal = objContext.CreateInstance(objNotaFiscal) [COLOR=Red]'the error occurs here[/COLOR]
  9. Call oINotaFiscal.CalculateTaxes(SendMsg, replyMsg, ErrorMsg)
SynchroBusiness.dll is installed in COM+


This error just occurs in Windows 2003.
In Windows 2000 the components are working fine.

Can anyone help?

Thanks
Roberto