A1VBCode Forums

Use an ActiveX DLL without refrencing it first.


http://www.a1vbcode.com/vbforums/Topic12959.aspx

By Cyrix1024 - 7/19/2005

Is it possible to use an ActiveX DLL without referencing it first? and if so then how would i go about it please.

Im really sorry if this has been answered but i kina need the answer fast.

Thanks deerly for any help u can give.

 

Steve B (Cyrix1024)

By Mark - 9/22/2005

You can use CreateObject to create COM DLLs without referencing them.

Set obj = CreateObject("ProgID")

But like Keith said, you will have to register the DLL first.