private void boxWarehouseReception(object sender, EventArgs e)
        {
            Form brf = new BoxReceptionForm();

            brf.Show();
            this.Dispose();
            this.Hide();
        }
Example #2
0
 public BoxReceptionWndMessageWindow(BoxReceptionForm frm)
 {
     this.dlgParent = frm;
 }