private void archivoDeTokens_Click(object sender, EventArgs e)
 {
     if (banderaAnalisis)
     {
         TablaSimbolos salida = new TablaSimbolos(tokens);
         salida.Show();
     }
     else
     {
         MessageBox.Show("No se ha realizado el análisis léxico");
     }
 }
        public Form1()
        {
            InitializeComponent();
            f2           = new Errores();
            f2.MdiParent = this;
            f2.Show();

            f3           = new CodigoObjeto();
            f3.MdiParent = this;
            f3.Show();

            f4           = new TablaSimbolos();
            f4.MdiParent = this;
            f4.Show();

            f5           = new ArchivoIntermedio();
            f5.MdiParent = this;
            f5.Show();

            f6           = new ArchivoFuente();
            f6.MdiParent = this;
            f6.Show();
        }