/* Pretty Simple, the opposite of the function above * removes the and disables the functionality of the * sheet*/ private void TurnOffSheet(counterSheet sheet) { sheet.Enabled = false; sheet.Visible = false; }
/* Enables the sheet*/ private void TurnOnSheet(counterSheet sheet) { sheet.Visible = true; sheet.Enabled = true; }