/// <summary> /// Create a new startup window /// </summary> public static void NewStartup() { // Creeate a new startup form, and show it StartupDisplay startupDisplay = new StartupDisplay(); startupDisplay.Show(); // Count the window windowCount++; }
/// <summary> /// Create a new startup window /// </summary> static public void NewStartup() { // Creeate a new startup form, and show it StartupDisplay startupDisplay = new StartupDisplay(); startupDisplay.Show(); // Count the window windowCount++; }