How to call shared method from VB6?

  • Thread starter Thread starter John Vottero
  • Start date Start date
J

John Vottero

Is there a way to call a shared method from VB6?

I have used regasm to register my .NET assembly so I can access it from VB6
but, I can't figure out how to call a shared method.

Thanks,

John Vottero
 
John Vottero said:
Is there a way to call a shared method from VB6?

I have used regasm to register my .NET assembly so I can access it from VB6
but, I can't figure out how to call a shared method.

Thanks,

John Vottero
Shared methods are not exposed for COM interop. You'll need to access it
through a non-shared wrapper.

David
 
Back
Top