I found something at a website. Is this what i need to do?


VB Code:
  1. Private _CallingForm as Object
  2. Public Sub New()
  3.         MyBase.New()
  4.         InitializeComponent()
  5.         End Sub
  6.  
  7. Public Sub New(ByRef CallingForm as Object) 'New Constructor Note the addition of a variable
  8.         MyBase.New()
  9.         InitializeComponent()
  10.          'After initialization do this
  11.          me._CallingForm = CallingForm
  12.         End Sub