diff options
| author | AShifter <[email protected]> | 2017-04-24 08:33:55 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-04-24 08:33:55 -0600 |
| commit | a2a3dc079d5623fda5f0c5ecd846b9ed0ffaa155 (patch) | |
| tree | 26f636eb3b265fbafc7c90f3cd2a8575cbcce3ff /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs | |
| parent | 29f9b993345d8ae0b20328786eaa25e7ae0ceb55 (diff) | |
| parent | 14ff6e1e569259cb5652230bc809b3cf8e6dc9c9 (diff) | |
| download | histacom2-a2a3dc079d5623fda5f0c5ecd846b9ed0ffaa155.tar.gz histacom2-a2a3dc079d5623fda5f0c5ecd846b9ed0ffaa155.tar.bz2 histacom2-a2a3dc079d5623fda5f0c5ecd846b9ed0ffaa155.zip | |
Merge pull request #48 from AShifter/master
Master
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs new file mode 100644 index 0000000..2fd0fe5 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs @@ -0,0 +1,34 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace TimeHACK.OS.Win95.Win95Apps +{ + public partial class WinClassicHWCV : UserControl + { + public WinClassicHWCV() + { + InitializeComponent(); + } + + private void Button1_Click(object sender, EventArgs e) + { + if (TextBox1.Text == "www.12padams.com") + { + Label3.Show(); + Label3.Text = "Hidden Content Found: Time Distorter"; + } + else + { + Label3.Show(); + Label3.Text = "No Content Found"; + } + } + } +} |
