Skip to content

Commit

Permalink
An application that recovers the Master Passwords of Laptops.
Browse files Browse the repository at this point in the history
  • Loading branch information
MicBrain committed May 3, 2014
1 parent bcc1c2b commit b182547
Show file tree
Hide file tree
Showing 46 changed files with 3,732 additions and 0 deletions.
Binary file added 2.exe
Binary file not shown.
Binary file added Description.pdf
Binary file not shown.
92 changes: 92 additions & 0 deletions Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

61 changes: 61 additions & 0 deletions Form1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace MR_Corporation
{
public partial class Form1 : Form
{
Form2 f2 = new Form2();
Form3 f3 = new Form3();
Form4 f4 = new Form4();
public Form1()
{
InitializeComponent();

}

private void button1_Click(object sender, EventArgs e)
{
try
{
f2.Show();
}
catch
{
f2 = new Form2();
f2.Show();
}
}

private void button2_Click(object sender, EventArgs e)
{
try
{
f3.Show();
}
catch
{
f3 = new Form3();
f3.Show();
}
}

private void button3_Click(object sender, EventArgs e)
{
try
{
f4.Show();
}
catch
{
f4 = new Form4();
f4.Show();
}
}
}
}
Loading

0 comments on commit b182547

Please sign in to comment.