diff options
| author | lempamo <[email protected]> | 2017-04-24 12:14:14 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-04-24 12:14:14 -0400 |
| commit | 9e48a71e65b4c56eae2e7b7f6535b4b115955612 (patch) | |
| tree | 26f636eb3b265fbafc7c90f3cd2a8575cbcce3ff /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs | |
| parent | 29f9b993345d8ae0b20328786eaa25e7ae0ceb55 (diff) | |
| parent | a2a3dc079d5623fda5f0c5ecd846b9ed0ffaa155 (diff) | |
| download | histacom2-9e48a71e65b4c56eae2e7b7f6535b4b115955612.tar.gz histacom2-9e48a71e65b4c56eae2e7b7f6535b4b115955612.tar.bz2 histacom2-9e48a71e65b4c56eae2e7b7f6535b4b115955612.zip | |
Merge remote-tracking branch 'refs/remotes/TimeHACKDevs/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"; + } + } + } +} |
