private void pictureBox1_Click(object sender, EventArgs e) { if (MessageBox.Show("En supprimant la Voiture '" + textBox2.Text + "' tous les Locations qont la concerne vont etre supprimer , Voulez-vous vraiment La supprimer ?", "Confirmation", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes) { o.conex(); o.cmd = new SqlCommand("Delete from Voitures where IdVoiture = '" + textBox1.Text + "'", o.cn); o.cmd.ExecuteNonQuery(); MessageBox.Show("Voiture bien supprime", "Supression avec succes", MessageBoxButtons.OK, MessageBoxIcon.Information); o.Deconex(); this.Hide(); SupprimerVoiture SV = new SupprimerVoiture(); SV.ShowDialog(); this.Close(); } }
private void supprimerUneVoitureToolStripMenuItem_Click(object sender, EventArgs e) { SupprimerVoiture a = new SupprimerVoiture(); a.ShowDialog(); }