I know to call .net code from COM you regasm the assembly and so on, butt...
I have a situation where I need to call a .Net assembly from VBScript. The
problem is that the type I need to create does not have a default constructor,
and thefore is not exported by regasm.
Is there any possible way to access this type from COM?? Is there some kind
of reflection COM object available?
TDC - 22 Sep 2005 13:57 GMT
Create another .NET object that does have a default constructor that
can then invoke the paramaterized construcotr of the original object.