private void aNALIZARToolStripMenuItem_Click(object sender, EventArgs e) { try { Automata A = new Automata(); string NombreRich = "Rich" + tabControl1.SelectedTab.Text; RichTextBox Rich = tabControl1.SelectedTab.Controls[NombreRich] as RichTextBox; A.AutomataConjuntos(Rich.Text, dataGridView1, dataGridView2, dataGridView3); M.RecuperarImagenes(); } catch (Exception E) { MessageBox.Show("NO HAY NADA QUE ANALIZAR", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } comboBox1.Items.Clear(); try { String[] Img = M.RecuperarImagenes(); foreach (String IMAGEN in Img) { comboBox1.Items.Add(IMAGEN); } comboBox1.Update(); } catch (Exception E) { MessageBox.Show("IMAGEN NO EXISTENTE", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }