Not sure why you would need to know which form created an instance of a class but assuming you do then,
Add a property to a class within the DLL that takes a form e.g.
Private frmForm As Form
Public Property Get ParentForm() As Form
Set ParentForm = frmForm
End Property
Public Property Set ParentForm(ByRef Value As Form)
Set frmForm = Value
End Property
When you create an instance of the class within the form, you can now pass a reference to the form to the class.
set objClass = new Class
set objClass.ParentForm = Me
If you need to find out which form created the class aat a later date then you just reference the ParentForm property.
Debug.Print Class.ParentFor.Caption
Hope this helps with your problem.
Andy