I'm trying to create an ActiveX object that I created using VB, in another project on the fly. I like to Create the object and show it in a form. The thing is, I need to do it late binding, like:

dim obj as object

set obj = CreateObject("myObj.TestControl")

' Then show it some how

How do I do this?