private void btnTag_Click(object sender, EventArgs e)
 {
     BSFrmTag frm = new BSFrmTag();
     this.Hide();
     frm.ShowDialog();
     this.Visible = true;
     bll = new MealBLL();
     dto = bll.GetMeals();
     ShowMeals();
 }
        private void btnTag_Click(object sender, EventArgs e)
        {
            BSFrmTag frm = new BSFrmTag();

            frm.TopLevel   = false;
            frm.AutoScroll = true;
            this.splitContainer1.Panel2.Controls.Add(frm);
            frm.FormBorderStyle = FormBorderStyle.None;
            frm.Show();
        }