private void btnInstanceFromDynamic_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");

            // Imports the collections present within the dynamic: "c:\temp\test.dynamic".

            ITisCollectionData[] collDatas = b.FromDynamic(@"c:\temp\test.dynamic");

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

            b.Dispose();
        }