//Opens the AboutBox form from the mainMenuToolStrip.
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FrmAboutBox aboutBox = new FrmAboutBox();

            aboutBox.Show();
        }
 //Opens the AboutBox form from the mainMenuToolStrip.
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     FrmAboutBox aboutBox = new FrmAboutBox();
     aboutBox.Show();
 }