private void bunifuImageButton2_Click(object sender, EventArgs e) { DialogResult dialogResult = MessageBox.Show("Tu veux le Passée l'etape suivant pour effectuée le Rendez-Vous!!", "étape Suivant", MessageBoxButtons.YesNo, MessageBoxIcon.Information); if (dialogResult == DialogResult.Yes) { this.Hide(); RDV r = new RDV(); r.ShowDialog(); } }
private void bunifuFlatButton1_Click_2(object sender, EventArgs e) { string req5 = "SELECT Id_C from Commande where IdClient=" + Id_Client + ""; ClassConnection.OpenCnx(); SqlDataReader dr1 = ClassConnection.FillDataReader(req5); if (dr1.Read()) { Id_C = (int)dr1["Id_C"]; dr1.Close(); RDV r = new RDV(); r.Pass((int)Id_C); r.ShowDialog(); } }