/// <summary>
        /// 
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void addGodmotherToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Add_Godmother addForm = new Add_Godmother();
            //this.Hide();
            this.Enabled = false;
            addForm.ShowDialog();
            this.Enabled = true;

            //REFRESH!
            populate(statusToGet, orderByGet, selectedShift);
        }
        /// <summary>
        /// Opens the add Godmother form.
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void addFairyGodmotherToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Add_Godmother addForm = new Add_Godmother();
            //this.Hide();
            this.Enabled = false;
            addForm.ShowDialog();
            this.Enabled = true;

            //REFRESH!
            populateControls();
        }