// Loads connection window immediately private void MainForm_Shown(object sender, EventArgs e) { ConnectionWindow ConWin = new ConnectionWindow(this); ConWin.ShowDialog(); }
// Deals with settings toolstrip private void hostingOptionsToolStripMenuItem_Click(object sender, EventArgs e) { ConnectionWindow ConWin = new ConnectionWindow(this); ConWin.ShowDialog(); }