// Display about box
        private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
        {
            //Create new instance of the about form
            AboutBox1 aboutForm = new AboutBox1();

            //Display the about box
            aboutForm.ShowDialog();
        }
        //Display the aboutbox
        private void aboutPictureBox_Click(object sender, EventArgs e)
        {
            //Create new instance of the aboutform
            AboutBox1 aboutForm = new AboutBox1();

            //Show the about box
            aboutForm.ShowDialog();
        }