private void btnInstanceMoveMany_Click(object sender, EventArgs e)
        {
            // Create a new Batch instance
            // Logs onto the CSM with "AdvancedDemo" application
            // and "FormId" station

            Batch b = new Batch("AdvancedDemo", "FormId");

            // Moves the collections "00000002" and "00000003"
            // to the "Export" station

            b.MoveMany(new string[] { "00000001", "00000002" }, "Export");
            MessageBox.Show("Collections 00000001 and 00000002 moved to Export  - refresh the Controller. Please, manually drag it back to FormId");

            // Dispose the batch instance
            // and disconnect from the CSM

            b.Dispose();
        }