Ejemplo n.º 1
0
        private void Process()
        {
            if (!this.ValidateInput())
            {
                return;
            }

            MdbToTextProcessor.ProcessingValues values = new MdbToTextProcessor.ProcessingValues()
            {
                MdbFilePaths = this.GetFilePathsForProcessing(),
                MdbPath      = this.MdbPath,
                OutputFormat = this.OutputFormat,
                OutputPath   = this.OutputPath,
                OutputType   = this.OutputType,
            };

            MdbToTextProcessor.Process(values);

            MessageBox.Show(FormMessageStrings.OutputComplete, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
        }
Ejemplo n.º 2
0
        private void Process()
        {
            if (!this.ValidateInput())
            {
                return;
            }

            MdbToTextProcessor.ProcessingValues values = new MdbToTextProcessor.ProcessingValues()
            {
                MdbFilePaths = this.GetFilePathsForProcessing(),
                MdbPath = this.MdbPath,
                OutputFormat = this.OutputFormat,
                OutputPath = this.OutputPath,
                OutputType = this.OutputType,
            };

            MdbToTextProcessor.Process(values);

            MessageBox.Show(FormMessageStrings.OutputComplete, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
        }