private void cardItemsButton_Click(object sender, EventArgs e)
        {
            Curl c = new Curl();

            Cursor.Current = Cursors.WaitCursor;
            c.getNames();
            Cursor.Current = Cursors.Default;
        }
        private void Form1_Load(object sender, EventArgs e)
        {
            Curl c = new Curl();

            c.getNames();
            c.getLineItems();
            c.joinTables();
            Application.Exit();
        }
        private void joinTables_Click(object sender, EventArgs e)
        {
            Curl c = new Curl();

            Cursor.Current = Cursors.WaitCursor;

            c.getNames();
            c.getLineItems();
            c.joinTables();

            Cursor.Current = Cursors.Default;
        }