private void miRegistrarPesaje_Click(object sender, EventArgs e) { try { Form frm = this.MdiChildren.FirstOrDefault(X => X is frm_RegistrarPesaje); if (frm != null) { frm.BringToFront(); return; } frm = new frm_RegistrarPesaje(); frm.MdiParent = this; frm.WindowState = FormWindowState.Normal; frm.StartPosition = FormStartPosition.Manual; frm.Location = new Point(0, 0); frm.Show(); } catch (Exception) { MessageBox.Show("Disculpe, el sistema se encuentra fuera de servicio!", this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void miRegistrarPesaje_Click(object sender, EventArgs e) { try { Form frm = this.MdiChildren.FirstOrDefault(X => X is frm_RegistrarPesaje); if (frm != null) { frm.BringToFront(); return; } else { frm_RegistrarPesaje frm1 = new frm_RegistrarPesaje(); frm1.MdiParent = this; frm1.UsuarioId = usuarioId; 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); } }