frmMain is what is loaded on startup. Is there a method of setting a variable within the module to the existing instance of frmMain?

I tried declaring a variable in the module as Windows.Forms.Form , then when frmMain loads, i set that variable = ME

will that then allow me to reference the particular instance of the form?


CODE IN MODULE
=================
Code:
Public frmMainInst As Windows.Forms.Form 'DECLARED WITHIN MODULE, BEFORE SUBS

CODE IN frmMain
=================
Code:
Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
                frmMainInst = Me
    End Sub