diff options
4 files changed, 10 insertions, 4 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.Designer.cs index 0006026..5475040 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.Designer.cs @@ -81,11 +81,13 @@ this.Label3.Name = "Label3"; this.Label3.Size = new System.Drawing.Size(148, 13); this.Label3.TabIndex = 3; - this.Label3.Text = "Content Found: Time Distortor"; + this.Label3.Text = "Label3"; + this.Label3.Visible = false; // // Button1 // this.Button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.Button1.Location = new System.Drawing.Point(278, 145); this.Button1.Name = "Button1"; this.Button1.Size = new System.Drawing.Size(75, 20); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs index 6f9bb07..c1a203a 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.cs @@ -15,11 +15,12 @@ namespace TimeHACK.OS.Win95.Win95Apps public WinClassicHWCV() { InitializeComponent(); + Button1.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); } private void Button1_Click(object sender, EventArgs e) { - if (TextBox1.Text == "www.12padams.com") + if (TextBox1.Text == "www.12padams.com" || TextBox1.Text == "http://www.12padams.com/") { Label3.Show(); Label3.Text = "Hidden Content Found: Time Distorter"; diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.resx b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.resx index fb1f692..1d196e9 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.resx +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicHWCV.resx @@ -118,9 +118,9 @@ <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="TextBox1.Text" xml:space="preserve"> - <value>This Program is a hacking tool which is able to view hidden content on websites. + <value>This program is a hacking tool which is able to view hidden content on websites. -To view hidden content just type the name of the website in the box below and this will enable you to see all the hidden features on a website. +To view hidden content just type the URL of the website in the box below and this will enable you to see all the hidden features on a website. WARNING: This only displays hidden content which can not be accessed in anyway without this software. </value> diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.Designer.cs index a82ea29..93dcbd2 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.Designer.cs @@ -73,6 +73,7 @@ // // applyButton // + this.applyButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.applyButton.Location = new System.Drawing.Point(209, 245); this.applyButton.Name = "applyButton"; this.applyButton.Size = new System.Drawing.Size(75, 23); @@ -83,6 +84,7 @@ // // cancelButton // + this.cancelButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.cancelButton.Location = new System.Drawing.Point(128, 245); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); @@ -93,6 +95,7 @@ // // okButton // + this.okButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.okButton.Location = new System.Drawing.Point(47, 245); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); |
