Example #1
0
 private void alertasToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Alertas.frmAlerta fAlerta = new Alertas.frmAlerta();
     fAlerta.CodigoEstablecimiento = IdEstablecimientoSalud;
     fAlerta.CodigoObstetra        = IdObstetra;
     fAlerta.MdiParent             = this;
     fAlerta.Show();
 }
Example #2
0
 private void frmMenu_Load(object sender, EventArgs e)
 {
     HabilitarPermisos();
     Alertas.frmAlerta fAlerta = new Alertas.frmAlerta();
     fAlerta.CodigoEstablecimiento = IdEstablecimientoSalud;
     fAlerta.CodigoObstetra        = IdObstetra;
     fAlerta.MdiParent             = this;
     fAlerta.Show();
 }
Example #3
0
 private void reportesDeAlertasToolStripMenuItem_Click(object sender, EventArgs e)
 {
     Alertas.frmAlerta fAlerta = new Alertas.frmAlerta();
     fAlerta.CodigoEstablecimiento = IdEstablecimientoSalud;
     fAlerta.CodigoObstetra        = IdObstetra;
     if (oUtilitarios.verificarventanaabierta("frmAlerta"))
     {
         fAlerta.MdiParent = this;
         fAlerta.Show();
     }
 }