-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
An application that recovers the Master Passwords of Laptops.
- Loading branch information
Showing
46 changed files
with
3,732 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.