Beispiel #1
0
        //Starts test using complex password
        private void button3_Click(object sender, EventArgs e)
        {
            String fn  = p.get();
            Disp   lol = new Disp(1, fn, hardCounter);

            lol.Visible = true;
            hardCounter++;
        }
Beispiel #2
0
 private void button3_Click(object sender, EventArgs e)
 {
     if (textBox2.Text != "")
     {
         write(textBox2.Text, fn);
     }
     else
     {
         write("-empty-", fn);
     }
     this.Hide();
     if (passCTR < 25)
     {
         Disp lol = new Disp(selector, p.get(), passCTR);
         lol.Visible = true;
         this.Hide();
     }
 }