
early binding / late binding
I am using com+ admin dll, after puting the reference I can use it normaly
as
dim blah as new comadmin.comadmincatalog
but I can also use it as
set blah = createobject("comadmin.comadmincatalog")
but if i going to use the ComAdminCatalogCollection, I cannot use the
createobject method. I checked in the registry HKCR\CLSID for the ProgID
but i couldn't found the progID. So, though I create the ComAdminCatalog
object
using createobject, why I can't use the ComAdminCatalogCollection using
createobject ? Seems like they have exposed ComAdminCatalog as the
publicaly creatable class ?