What i would do:
-Declare (Public Dim f As FormName) in a module. If you use a class, then you can add the 'Shared' keyword in order not to have to init the class.
-Do like : f = New FormName
And then show it : f.Show()
(As f is Public and/or Shared, it can be accessed by anywhere in the project(s))