Click to See Complete Forum and Search --> : Dynamically Loading DLLs. Is it possible?


Robert Fernando
October 11th, 1999, 05:59 AM
Hi,

I was wondering.. is it possible to dynamically load an ActiveX dll programmatically? i.e. Have no reference to it in the project but still be able to load it through code?

Thanks,

Rob.

Lothar Haensler
October 11th, 1999, 06:09 AM
the Createobject function allows you to do that.
Set o = CreateObject("yourProgID")
e.g.
Createobject("excel.application")