private void warehouseReception(object sender, EventArgs e)
        {
            this.statusLabel.Visible = false;
            Form rf = new ReceptionForm();

            rf.Show();
            this.Hide();
        }
        private void orderWarehouseReception(object sender, EventArgs e)
        {
            Form wrf = new ReceptionForm();

            wrf.Show();
            this.Dispose();
            this.Hide();
        }
示例#3
0
文件: SearchForm.cs 项目: yorg76/test
        private void warehouseReception(object sender, EventArgs e)
        {
            Console.Error.Flush();
            Console.Error.Close();
            this.errStream.Close();
            Form rf = new ReceptionForm();

            rf.Show();
            this.Hide();
        }
示例#4
0
 public ReceptionWndMessageWindow(ReceptionForm frm)
 {
     this.dlgParent = frm;
 }