Ejemplo n.º 1
0
        private void NewOrderButton_Click(object sender, EventArgs e)
        {
            this.Hide();
            PlaceOrder1 p1 = new PlaceOrder1(this, l, this.id);

            p1.Show();
        }
 public PlaceOrder2(PlaceOrder1 p, MemberDashBoard m1, LogIn l1, int i, string pa, string pc, string ra, string rc)
 {
     this.parent        = p;
     this.dash          = m1;
     this.l             = l1;
     this.id            = i;
     this.pickupaddress = pa;
     this.pickupcity    = pc;
     this.rcvaddress    = ra;
     this.rcvcity       = rc;
     InitializeComponent();
 }