Public Class YourForm
Inherits Systems.Windows.Forms.Form
Private cls as Class 'Class you need to reference
#Region "Windows Form Designer genereated code"
'Default constructor created by designer
Public Sub New()
MyBase.New
'This process is called by Windows Form Designer
InitializeComponent()
'Add any initialization after this point
End Sub
'Create your own constructor to accept reference to
'to the instantiated class passed in. You can now
'reference the class's functionality through
'me.cls.function()
Public Sub New(ByRef clsIn as Class)
MyBase.New
InitializeComponent()
Me.cls = clsIn
End Sub
#End Region
'This is how you would open the form from another place in you app
Dim cls as New Class()
Dim frm as New YourForm(cls)
frm.Show()