Example #1
0
        public GuiWithBulkOCR()
        {
            this.backgroundWorkerBulk = new System.ComponentModel.BackgroundWorker();
            this.backgroundWorkerBulk.WorkerReportsProgress      = true;
            this.backgroundWorkerBulk.WorkerSupportsCancellation = true;
            this.backgroundWorkerBulk.DoWork             += new System.ComponentModel.DoWorkEventHandler(this.backgroundWorkerBulk_DoWork);
            this.backgroundWorkerBulk.ProgressChanged    += new System.ComponentModel.ProgressChangedEventHandler(this.backgroundWorkerBulk_ProgressChanged);
            this.backgroundWorkerBulk.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.backgroundWorkerBulk_RunWorkerCompleted);

            statusForm       = new StatusForm();
            statusForm.Title = Properties.Resources.BulkProcessStatus;
        }
Example #2
0
 public GuiWithBatch()
 {
     statusForm       = new StatusForm();
     statusForm.Title = Properties.Resources.BatchProcessStatus;
 }