Ejemplo n.º 1
0
        private void Add_Click(object sender, EventArgs e)
        {
            MealConn conn    = new MealConn();
            Meal     newMeal = new Meal();

            newMeal.Name     = txtMeal.Text;
            newMeal.MealDesc = txtDesc.Text;
            newMeal.Time     = dateTimePicker1.Value.ToShortDateString() + " " + dateTimePicker2.Value.Hour.ToString() + ":" + dateTimePicker2.Value.Minute.ToString();

            Task.Run(() => conn.Insert(newMeal)).Wait();

            foreach (Control c in tabPage1.Controls)
            {
                if (c is TextBox)
                {
                    c.Text = "";
                }

                dateTimePicker1.Value = DateTime.Today;

                dateTimePicker2.Value = DateTime.Now;
            }

            GetMeals();
        }
Ejemplo n.º 2
0
        private void GetMeals()
        {
            listMeals.Columns.Clear();
            listMeals.Rows.Clear();
            listMeals.Columns.Add("Meal", "Meal");
            listMeals.Columns.Add("Description", "Description");
            listMeals.Columns.Add("Time Eaten", "Time Eaten");
            //dt.Columns.Add("Image",typeof(Image));


            mealList = new List <Meal>();

            // and a new connection

            MealConn conn = new MealConn();

            // get the data and add it to the heroList

            Task.Run(() => conn.Get()).Wait();

            foreach (Meal m in mealList)
            {
                listMeals.Rows.Add(new string[] { m.Name, m.MealDesc, m.Time });
            }
        }