Exemplo n.º 1
0
 //abrir ventana tarifas
 private void tarifasToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (tarifas == null)
     {
         tarifas             = new Tarifas();
         tarifas.MdiParent   = this;
         tarifas.FormClosed += new FormClosedEventHandler(CerrarFormaTarifas);
         tarifas.Show();
     }
     else
     {
         tarifas.Activate();
     }
 }
Exemplo n.º 2
0
 private void CerrarFormaTarifas(object sender, FormClosedEventArgs e)
 {
     tarifas = null;
 }