private void Password_Reset_Back_button_Click(object sender, EventArgs e)
        {
            this.Hide();
            wolfgraphicsLLC_Employee_Information ss = new wolfgraphicsLLC_Employee_Information(EmployeeIDOutput_label.Text);

            ss.Show();
        }
        private void LogIn_button_Click(object sender, EventArgs e)
        {
            this.Hide();
            wolfgraphicsLLC_Employee_Information ss = new wolfgraphicsLLC_Employee_Information(" ADD this latter");

            ss.Show();
        }
        private void EmployeeBonusBack_Click(object sender, EventArgs e)
        {
            this.Hide();
            wolfgraphicsLLC_Employee_Information ss = new wolfgraphicsLLC_Employee_Information(EmployeeIDOutput_label.Text);

            ss.Show();
        }
        private void Save_button_Click(object sender, EventArgs e)
        {
            try
            {
                StreamWriter outputFile;
                outputFile = File.CreateText("EmployeeInformation.txt");

                outputFile.WriteLine(EmployeeIDOutput_label.Text);


                outputFile.Close();

                this.Hide();
                wolfgraphicsLLC_Employee_Information ss = new wolfgraphicsLLC_Employee_Information(EmployeeIDOutput_label.Text);
                ss.Show();
            }

            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }