private void StartBtn_Click(object sender, EventArgs e) { GetOrdersForm fm = new GetOrdersForm() { }; this.Visible = false; fm.Show(this); }
private void OrderItBtn_Click(object sender, EventArgs e) { GetOrdersForm fm = new GetOrdersForm(); int fc = Convert.ToInt32(this.QuantityBox.Text); //GetOrdersForm.GetFoodCost; int fcc = Convert.ToInt32(this.GetByCost.Text); int fcf = fc * fcc; //Get All Info Here GetCountOfFood = fcf.ToString(); this.Visible = false; fm.Show(this); }