Esempio n. 1
0
        private void StartBtn_Click(object sender, EventArgs e)
        {
            GetOrdersForm fm = new GetOrdersForm()
            {
            };

            this.Visible = false;
            fm.Show(this);
        }
Esempio n. 2
0
        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);
        }