Exemplo n.º 1
0
 private void button4_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Вы уверены что хотите удалить данную игру?", "Сообщение", MessageBoxButtons.YesNo) == DialogResult.Yes)
     {
         WorkWithBD.DeletePlay(Convert.ToString(dataGridView1.CurrentRow.Cells[0].Value));
         dataGridView1.Rows.Clear();
         WorkWithBD.ReadScheduleForDataGridView(dataGridView1);
     }
 }
Exemplo n.º 2
0
        private void button2_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            FormAddPlay form = new FormAddPlay();

            form.ShowDialog();
            dataGridView1.Rows.Clear();
            WorkWithBD.ReadScheduleForDataGridView(dataGridView1);
            this.Visible = true;
        }
Exemplo n.º 3
0
        private void button3_Click(object sender, EventArgs e)
        {
            this.Visible = false;
            FormEditPlay form = new FormEditPlay(Convert.ToString(dataGridView1.CurrentRow.Cells[0].Value), Convert.ToString(dataGridView1.CurrentRow.Cells[1].Value),
                                                 Convert.ToString(dataGridView1.CurrentRow.Cells[2].Value), Convert.ToString(dataGridView1.CurrentRow.Cells[3].Value),
                                                 Convert.ToString(dataGridView1.CurrentRow.Cells[4].Value), Convert.ToString(dataGridView1.CurrentRow.Cells[5].Value),
                                                 Convert.ToBoolean(dataGridView1.CurrentRow.Cells[6].Value), Convert.ToBoolean(dataGridView1.CurrentRow.Cells[7].Value),
                                                 Convert.ToString(dataGridView1.CurrentRow.Cells[8].Value));

            form.ShowDialog();
            dataGridView1.Rows.Clear();
            WorkWithBD.ReadScheduleForDataGridView(dataGridView1);
            this.Visible = true;
        }
Exemplo n.º 4
0
 private void FormWithSchedule_Load(object sender, EventArgs e)
 {
     dataGridView1.Rows.Clear();
     WorkWithBD.ReadScheduleForDataGridView(dataGridView1);
 }