Ejemplo n.º 1
0
        public SearchingDuplicates(MainForm mainForm)
        {
            InitializeComponent();

            stop = false;
            startTime = DateTime.Now;

            this.mainForm = mainForm;

            tmr.Tick += tmr_Tick;
            tmr.Interval = 1000;
            tmr.Start();
        }
Ejemplo n.º 2
0
 public SearchingDuplicates(MainForm mainForm, System.Threading.Thread th)
     : this(mainForm)
 {
     this.th = th;
 }