I have a class like this
VB Code:
  1. Private WithEvents frm As Form
  2.  
  3. Private Sub Class_Initialize()
  4.     Set frm =  new Form
  5. End Sub

I would like to create a new form when the class initializes.
And I don't want to add a form at design time.
The 'new Form' stuff doesnt seem to work.

Any ideas?

Regards, Tadej