I am using this code to create a new form...
In a different subroutine, I wanted to reference the now open "frmShow"VB Code:
Dim frmShow As New Form With frmShow .WindowState = FormWindowState.Maximized .MaximizeBox = False .MinimizeBox = False .BackColor = System.Drawing.Color.Black End With frmShow.Show()
What should I do?
