private void modulo1ToolStripMenuItem1_Click(object sender, EventArgs e) { /*bool estaAbierto = ValidarApertura("ReporteServicio"); * if (estaAbierto is true) * {*/ if (ValidarApertura("ReporteServicio") == true) { MessageBox.Show("EL FORMULARIO YA SE ENCUENTRA ABIERTO"); Application.OpenForms["ReporteServicio"].Focus(); } else { reportes.ReporteServicio reporte = new reportes.ReporteServicio(); reporte.vista = 1; reporte.Show(); } }
private void modulo3ToolStripMenuItem1_Click(object sender, EventArgs e) { reportes.ReporteServicio reporte = new reportes.ReporteServicio(); reporte.vista = 3; reporte.Show(); }