private void btnInstanceMove_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 collection "00000001" to
            // the "Export" station

            b.Move("00000001", "Export");
            MessageBox.Show("Collection 00000001 moved to Export  - refresh the Controller. Please, manually drag it back to FormId");

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

            b.Dispose();
        }