private void miVehiculo_Click(object sender, EventArgs e) { try { Form frm = this.MdiChildren.FirstOrDefault(X => X is frm_AdmVehiculo); if (frm != null) { frm.BringToFront(); return; } else { frm_AdmVehiculo frm1 = new frm_AdmVehiculo(); frm1.Modo = frm_AdmVehiculo.TypeMode.Normal; frm1.MdiParent = this; frm1.WindowState = FormWindowState.Normal; frm1.StartPosition = FormStartPosition.Manual; frm1.Location = new Point(0, 0); frm1.Show(); } } catch (Exception) { MessageBox.Show("Disculpe, el sistema se encuentra fuera de servicio!", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnBuscarVehiculo_Click(object sender, EventArgs e) { try { frm_AdmVehiculo frm = new frm_AdmVehiculo(); frm.Modo = frm_AdmVehiculo.TypeMode.Buscar; frm.MiDelegado += RecibirDatosVehiculo; frm.ShowDialog(); } catch (Exception) { MessageBox.Show("Disculpe, el sistema se encuentra fuera de servicio!", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error); } }