public frmAsyncProgress(iASyncProgress processor)
 {
     this._process = processor;
     this._process.AsyncAbort += new EventHandler(processor_AsyncAbort);
     this._process.AsyncComplete += new EventHandler(processor_AsyncComplete);
     this._process.AsyncStart += new EventHandler(processor_AsyncStart);
     this._process.ProgressUpdate += new EventHandler(processor_ProgressUpdate);
 }
 public frmAsyncProgress(iASyncProgress processor)
 {
     this._process                 = processor;
     this._process.AsyncAbort     += new EventHandler(processor_AsyncAbort);
     this._process.AsyncComplete  += new EventHandler(processor_AsyncComplete);
     this._process.AsyncStart     += new EventHandler(processor_AsyncStart);
     this._process.ProgressUpdate += new EventHandler(processor_ProgressUpdate);
 }