My situation can be best described as something like this:
Code:
Standard EXE (EXE1)
  Form1
    DLL1.Class1.Sub1(Me)

ActiveX DLL (DLL1)
  Class1
    Sub1(ByRef Owner)
      Class2.Sub1(Owner)
  Class2
    Private WithEvents m_frmOwner As Form
    
    Sub1(ByRef Owner)
When i try to run the 'EXE1' i get the 'Object or class does not support the set of events' error.
I should mention i really need that 'WithEvents' on 'm_frmOwner' in 'Class2'.

Am i missing something?