Example #1
0
        private void bgwProfiles_DoWork(object sender, DoWorkEventArgs e)
        {
            ssStatus1.Text = "Updating Fingers Templates...";
            dcProfile_SQL _dc = new dcProfile_SQL();

            _dc.RecordIndexChanged += new RecordIndexChangedHandler(OnRecordIndexChanged);
            _dc.FingerTemplatesUpdate();
        }
Example #2
0
        private void RunTimer()
        {
            // ssStatus1.Text = "Updating Fingers Templates...";
            Application.DoEvents();
            dcProfile_SQL _dc = new dcProfile_SQL();
            ProcessMaster _pm = new ProcessMaster(GetTime);

            _pm.OnProcessStop = delegate()
            {
                //ssStatus1.Text = "Fingers Templates processing is done.";
                Application.DoEvents();
                Thread.Sleep(1000);
                // ssStatus1.Text = "";
                Application.DoEvents();
            };
            _pm.Start();
        }
Example #3
0
 private void RunTimer()
 {
     // ssStatus1.Text = "Updating Fingers Templates...";
     Application.DoEvents();
     dcProfile_SQL _dc = new dcProfile_SQL();
     ProcessMaster _pm = new ProcessMaster(GetTime);
     _pm.OnProcessStop = delegate()
     {
         //ssStatus1.Text = "Fingers Templates processing is done.";
         Application.DoEvents();
         Thread.Sleep(1000);
        // ssStatus1.Text = "";
         Application.DoEvents();
     };
     _pm.Start();
 }
Example #4
0
 private void bgwProfiles_DoWork(object sender, DoWorkEventArgs e)
 {
     ssStatus1.Text = "Updating Fingers Templates...";
     dcProfile_SQL _dc = new dcProfile_SQL();
     _dc.RecordIndexChanged += new RecordIndexChangedHandler(OnRecordIndexChanged);
     _dc.FingerTemplatesUpdate();
 }