private void btnSetRound_Click(object sender, EventArgs e)
        {
            frmSetRound Dialog = new frmSetRound(Round);

            Dialog.ShowDialog();
            SetRound(System.Convert.ToInt16(Dialog.newRoundValue));
            Dialog.Dispose();
        }
 private void btnSetRound_Click(object sender, EventArgs e)
 {
     frmSetRound Dialog = new frmSetRound(Round);
     Dialog.ShowDialog();
     SetRound(System.Convert.ToInt16(Dialog.newRoundValue));
     Dialog.Dispose();
 }