diff options
Diffstat (limited to 'TimeHACK.Main/WinClassicForms/WinClassicIE4.cs')
| -rw-r--r-- | TimeHACK.Main/WinClassicForms/WinClassicIE4.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs b/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs index 055de48..61cd5a1 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs @@ -98,7 +98,7 @@ namespace TimeHACK.WinClassicForms browsinghistory[i] = null; } int j = 0; - for (int i = 0; i < browsinghistory.Count; i++) + for (int i = 1; i < browsinghistory.Count; i++) { if (browsinghistory[i] != null && browsinghistory[i] != "") j++; } @@ -142,5 +142,15 @@ namespace TimeHACK.WinClassicForms historylocation--; } } + + private void Button2_Click(object sender, EventArgs e) + { + 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); + } } } |
