// ******* Code for Home tab *******

        private void Start_New_Match_Button_Click(object sender, EventArgs e)
        {
            DialogResult selectFolderResult = Select_Folder_Dialog.ShowDialog();

            if (selectFolderResult == DialogResult.OK)
            {
                folderName = Select_Folder_Dialog.SelectedPath;
                Begin_Match_Confirm_Table.Hide();
                Details_Tab_Set.SelectedTab = Match_Details_Tab;
            }
        }
 // Hides the confirmation table and allows the user to make changes to the team lists.
 private void Begin_Match_Cancel_Button_Click(object sender, EventArgs e)
 {
     Begin_Match_Confirm_Table.Hide();
     Begin_Match_Button.Show();
 }