Example #1
0
 private void Analyse2_Run()
 {
     for (int i = 0; i < this.c.Count <FileInfo>(); i++)
     {
         Suchen suchen = new Suchen();
         suchen.Laden(this.c[i].FullName);
     }
 }
Example #2
0
        private void Analyse_Run()
        {
            Suchen suchen = new Suchen();

            suchen.Laden(Application.StartupPath + "\\Captcha.png");
            this.Status_Bitmap(suchen.E_Suchen());
            if (GetPoint(suchen.Bild) == true)
            {
                Cracked = true;
            }
            else
            {
                CrackingInProgress = false;
                Points             = null;
                Releoad();
            }
            CrackingInProgress = false;
            this.Analyse.Abort();
        }
Example #3
0
        private void Analyse_Run()
        {
            Suchen suchen = new Suchen();

            suchen.Laden(Application.StartupPath + "\\Captcha.png");
            this.Status_Bitmap(suchen.E_Suchen());
            if (GetPoint(suchen.Bild) == true)
            {
                Cracked = true;
                Settings.Action.Add(DateTime.Now.ToShortTimeString() + " " + "Next captcha cracked");
            }
            else
            {
                CrackingInProgress = false;
                Points             = null;
                Releoad();
            }
            CrackingInProgress = false;
            this.Analyse.Abort();
        }