示例#1
0
 private void TiposDePólizaToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (frm_tipo_poliza == null)
     {
         frm_tipo_poliza             = new mantenimiento_tipos_poliza(usuarioActivo);
         frm_tipo_poliza.MdiParent   = this;
         frm_tipo_poliza.FormClosed += new FormClosedEventHandler(frm_tipo_poliza_FormClosed);
         frm_tipo_poliza.Show();
     }
     else
     {
         frm_tipo_poliza.Activate();
     }
 }
示例#2
0
 private void frm_tipo_poliza_FormClosed(Object sender, FormClosedEventArgs e)
 {
     frm_tipo_poliza = null;
 }