public Form1()
        {
            if (!FilesInPlace())
            {
                MessageBox.Show("Some of the required applications are not in place. Make sure there is a folder 'data' containing tools for extraction. The program will now close.");
                Environment.Exit(0);
            }

            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            InitializeComponent();
            filetype = ".afc";
            exmethod = true;
            Lockdown(true);
            files = new List<string>();
            outputMode = ProcessingMode.OutputMode.SeparateDirectory;
            Progress.Reset(1);
            convState = 0;
            updateNames();
        }
        public Form1()
        {
            if (!FilesInPlace())
            {
                MessageBox.Show("Some of the required applications are not in place. Make sure there is a folder 'data' containing tools for extraction. The program will now close.");
                Environment.Exit(0);
            }

            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            InitializeComponent();
            filetype = ".afc";
            exmethod = true;
            Lockdown(true);
            files      = new List <string>();
            outputMode = ProcessingMode.OutputMode.SeparateDirectory;
            Progress.Reset(1);
            convState = 0;
            updateNames();
        }
 private void radioOutputStructure_CheckedChanged(object sender, EventArgs e)
 {
     outputMode = ProcessingMode.OutputMode.OriginalStructure;
 }
 private void radioOutputFolder_CheckedChanged(object sender, EventArgs e)
 {
     outputMode = ProcessingMode.OutputMode.SeparateDirectory;
 }
 private void radioOutputStructure_CheckedChanged(object sender, EventArgs e)
 {
     outputMode = ProcessingMode.OutputMode.OriginalStructure;
 }
 private void radioOutputFolder_CheckedChanged(object sender, EventArgs e)
 {
     outputMode = ProcessingMode.OutputMode.SeparateDirectory;
 }