diff options
| author | lempamo <[email protected]> | 2017-03-28 13:49:18 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-03-28 13:49:18 -0400 |
| commit | 023db4c64f6197e5de6b2c56c3b5b46cc9824ea3 (patch) | |
| tree | 71b680b3a351e1e0f739cfbba23135cfb986a4cd | |
| parent | e348b906c3b512f024f6c3b2e3db8349305609fe (diff) | |
| download | histacom2-023db4c64f6197e5de6b2c56c3b5b46cc9824ea3.tar.gz histacom2-023db4c64f6197e5de6b2c56c3b5b46cc9824ea3.tar.bz2 histacom2-023db4c64f6197e5de6b2c56c3b5b46cc9824ea3.zip | |
home button fixed
| -rw-r--r-- | .vs/TimeHACK/v14/.suo | bin | 122368 -> 122368 bytes | |||
| -rw-r--r-- | TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs | 1 | ||||
| -rw-r--r-- | TimeHACK.Main/WinClassicForms/WinClassicIE4.cs | 5 |
3 files changed, 6 insertions, 0 deletions
diff --git a/.vs/TimeHACK/v14/.suo b/.vs/TimeHACK/v14/.suo Binary files differindex 442edab..9b524f3 100644 --- a/.vs/TimeHACK/v14/.suo +++ b/.vs/TimeHACK/v14/.suo diff --git a/TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs b/TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs index a49a493..f167732 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs @@ -2341,6 +2341,7 @@ this.Button5.Text = "Home"; this.Button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.Button5.UseVisualStyleBackColor = true; + this.Button5.Click += new System.EventHandler(this.Button5_Click); // // Button4 // diff --git a/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs b/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs index a1503f4..61cd5a1 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs @@ -147,5 +147,10 @@ namespace TimeHACK.WinClassicForms { if(browsinghistory[historylocation+1] != null) goToSite(browsinghistory[historylocation + 1], false); } + + private void Button5_Click(object sender, EventArgs e) + { + goToSite("www.microsoft.com/internetexplorer4/welcome", false); + } } } |
