private void btnPlay_Click(object sender, EventArgs e)
        {
            FormGameOptions FormGameOptions = new FormGameOptions();

            FormGameOptions.FormTitleScreen = this;
            this.Hide();
            FormGameOptions.ShowDialog(); //once formpoker closese, formgameoptions will close and menu form will popup
            this.Show();                  //menu pops up to allow users to view their score, consult the user manual, or start a new game
            if (user.getUserName() != "default" && user.getPassword() != "default")
            {
                user.reLoadFromFile(); //reloads the user account so that the updated score would show.
            }
        }
 private void btnPlay_Click(object sender, EventArgs e)
 {
     FormGameOptions FormGameOptions = new FormGameOptions();
     FormGameOptions.FormTitleScreen = this;
     this.Hide();
     FormGameOptions.ShowDialog(); //once formpoker closese, formgameoptions will close and menu form will popup
     this.Show(); //menu pops up to allow users to view their score, consult the user manual, or start a new game
     if (user.getUserName() != "default" && user.getPassword() != "default")
     {
         user.reLoadFromFile(); //reloads the user account so that the updated score would show.
     }
 }