you can use class modules to do this, make your class module and add some forms to the activeX dll project, you can bring these forms up from code using

Code:
Dim frmInput As New Form1

Public Property Let Visible (Data As Boolean)

    frmInput.Visible = Data

End Property
or whatever