private void aboutMenuItem_Click(object sender, EventArgs e)
 {
     AboutBox about = new AboutBox();
     about.ShowDialog();
 }
 /// <summary>
 /// Creates a new instance of the about form when this event is called
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     AboutBox box = new AboutBox();
     box.ShowDialog();
 }