private void button1_Click(object sender, EventArgs e) { AddClo1 add = new AddClo1(); this.Hide(); add.Show(); }
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { if (dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString() == "Update") { updatesource.var = Convert.ToInt32(dataGridView1.Rows[e.RowIndex].Cells[0].Value); this.Hide(); AddClo1 clo = new AddClo1(); clo.Show(); } if (dataGridView1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString() == "Delete") { int stdId = Convert.ToInt32(dataGridView1.Rows[e.RowIndex].Cells[0].Value); if (MessageBox.Show("Do you want to delete " + dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString() + "?", "Confirm", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { con.Open(); SqlCommand command = new SqlCommand("DELETE FROM Clo WHERE Id = '" + stdId + "'", con); command.ExecuteNonQuery(); con.Close(); this.cloTableAdapter.Fill(this.projectBDataSet1.Clo); } } }