/// <summary>
 /// This function displays the About dialog box.
 /// </summary>
 private void AboutMenuItem_Click(object sender, System.EventArgs e)
 {
     About aboutForm = new About();
     aboutForm.ShowDialog(this);
 }
 /// <summary>
 /// This function displays the About dialog box.
 /// </summary>
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     About aboutForm = new About();
     aboutForm.ShowDialog(this);
 }
 /// <summary>
 /// Display the About dialog box.
 /// </summary>
 /// <param name="sender">Object which fires the method</param>
 /// <param name="e">Event arguments of the callback</param>
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     About frmAbout = new About();
     frmAbout.ShowDialog();
 }