コード例 #1
0
        private void btnNuevo_Click(object sender, EventArgs e)
        {
            frmPlanDePruebaABM ofrmPlanDePruebaABM = new frmPlanDePruebaABM();

            ofrmPlanDePruebaABM.Op = 1;
            ofrmPlanDePruebaABM.ShowDialog();
            btnConsultar_Click(sender, e);
        }
コード例 #2
0
        private void btnNuevoPlan_Click(object sender, EventArgs e)
        {
            frmPlanDePruebaABM ofrmPlanDePruebaABM = new frmPlanDePruebaABM();

            ofrmPlanDePruebaABM.Op = 1;
            ofrmPlanDePruebaABM.ShowDialog();
            LlenarCombo(cboNombrePlan, oPlanDePruebaServicio.ObtenerTodos(), "Nombre", "Id_plan_prueba");
        }
コード例 #3
0
        private void btnEliminar_Click(object sender, EventArgs e)
        {
            frmPlanDePruebaABM ofrmPlanDePruebaABM = new frmPlanDePruebaABM((int)grdPlanDePrueba.CurrentRow.Cells[0].Value);

            ofrmPlanDePruebaABM.Op = 3;
            ofrmPlanDePruebaABM.ShowDialog();
            btnConsultar_Click(sender, e);
        }