      private void button4_Click(object sender, EventArgs e)
        {
            String[] b = new String[a.Count];
            a.CopyTo(b, 0);
            listBox2.Show();
            listBox2.Items.Clear();
            foreach (String element in b)
                listBox2.Items.Add(element);
        }
