//JOSUE VALIDACION DE ASIENTOS POR SELECCIONAR private void button1_Click(object sender, EventArgs e) { if (cantidad[2] + cantidad[1] + cantidad[0] == cnt) { frm_factura nuevo = new frm_factura(this, funcion, cantidad, sub, numeroAsientos()); nuevo.Show(); this.Hide(); } else { MessageBox.Show(string.Format("NUMERO DE ASIENTOS QUE FALTAN SELECCIONAR: {0}", cantidad[2] + cantidad[1] + cantidad[0] - cnt), "ERROR", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void Btn_seleccionSalir_Click(object sender, EventArgs e) { factura.Show(); Close(); }