private void button1_Click(object sender, EventArgs e)
        {
            BSFrmNutrient frm = new BSFrmNutrient();

            frm.TopLevel   = false;
            frm.AutoScroll = true;
            this.splitContainer1.Panel2.Controls.Add(frm);
            frm.FormBorderStyle = FormBorderStyle.None;
            frm.Show();
        }
Esempio n. 2
0
 public BSFrmAddNutrient(BSFrmNutrient _FrmAddNutrient)
 {
     frmNutrientFrom = _FrmAddNutrient;
     InitializeComponent();
 }