Ejemplo n.º 1
0
 public ExtractProcess(ManualResetEvent EventStop, ManualResetEvent EventStopped, FormTOCTREViewer Form, DataTable DataTable, String ExtractPath)
 {
     this.m_EventStop = EventStop;
     this.m_EventStopped = EventStopped;
     this.m_form = Form;
     this.m_DataTable = DataTable;
     this.m_ExtractPath = ExtractPath;
 }
Ejemplo n.º 2
0
 public ExtractChainProcess(ManualResetEvent EventStop, ManualResetEvent EventStopped, FormTOCTREViewer Form, DataTable DataTable, DataRow DataRow, String ExtractPath)
 {
     this.m_EventStop = EventStop;
     this.m_EventStopped = EventStopped;
     this.m_form = Form;
     this.m_DataTable = DataTable;
     this.m_DataRow = DataRow;
     this.m_ExtractPath = ExtractPath;
     this.parsedFilenames = new List<String>();
     this.ExtractTable = DataTable.Clone();
     this.ExtractTable.Rows.Clear();
     this.VALID_CHARACTERS.AddRange(new Char[] { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '-', ',', '.', '/', '\\', '_', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' });
 }
Ejemplo n.º 3
0
 public LoadProcess(ManualResetEvent eventStop, ManualResetEvent eventStopped, FormTOCTREViewer form, String filename)
 {
     m_EventStop = eventStop;
     m_EventStopped = eventStopped;
     this.m_form = form;
     m_filename = filename;
 }
Ejemplo n.º 4
0
        public FormProgress(FormTOCTREViewer form)
        {
            InitializeComponent();

              this.m_Form = form;
        }