private void closeForm(object sender, FormClosedEventArgs e)
 {
     try
     {
         if (frmfrmComandas.Equals((frmComandas)sender))
         {
             frmfrmComandas = null;
         }
     }
     catch { }
     try
     {
         if (frmfrmMenu.Equals((frmCrearMenu)sender))
         {
             frmfrmMenu = null;
         }
     }
     catch { }
     try
     {
         if (frmfrmConfiguracion.Equals((frmConfiguracion)sender))
         {
             frmfrmConfiguracion = null;
         }
     }
     catch { }
     try
     {
         if (frmfrmUsuarios.Equals((frmAddUsuarios)sender))
         {
             frmfrmUsuarios = null;
         }
     }
     catch { }
 }
 private void ActivarComandas()
 {
     desmarcarBotones();
     tsbtnComandas.BackColor = Color.LightSkyBlue;
     tsmiComandas.BackColor  = Color.LightSkyBlue;
     if (frmfrmComandas == null)
     {
         frmfrmComandas             = new frmComandas();
         frmfrmComandas.MdiParent   = this;
         frmfrmComandas.Dock        = DockStyle.Fill; //Para que cubra toda la pantalla
         frmfrmComandas.FormClosed += new FormClosedEventHandler(closeForm);
         frmfrmComandas.Show();
     }
     else
     {
         frmfrmComandas.Activate();
     }
 }