I am using this code to create a new form...
VB Code:
  1. Dim frmShow As New Form
  2.         With frmShow
  3.             .WindowState = FormWindowState.Maximized
  4.             .MaximizeBox = False
  5.             .MinimizeBox = False
  6.             .BackColor = System.Drawing.Color.Black
  7.         End With
  8.         frmShow.Show()
In a different subroutine, I wanted to reference the now open "frmShow"

What should I do?