I'm writing a utility for our work and one of the reqs. of this utility is to be able to create an object from knowing just the CLSID of the object. For example, when I run the following code in a function, I receive "Can create ActiveX component"
Dim oObj As Object
Set oObj = CreateObject("665E137E-C95D-4960-90AD-05179538A68F"
Set oObj = Nothing
Does anyone know of a way to create objects in VB6 by using only the CLSID of the object?
Thanks,
Kyle
Dim oObj As Object
Set oObj = CreateObject("665E137E-C95D-4960-90AD-05179538A68F"
Set oObj = Nothing
Does anyone know of a way to create objects in VB6 by using only the CLSID of the object?
Thanks,
Kyle