aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/Windows95.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-03-26 09:40:16 -0400
committerlempamo <[email protected]>2017-03-26 09:40:16 -0400
commite4d1958e36458ad0b24e0f6fabd3934323d31561 (patch)
tree0b786a881331f3a31c0db4a4529c2936e7b9b950 /TimeHACK.Main/Windows95.cs
parent95f36943e6763cfc4e3c9cbdff86752b1bc913a6 (diff)
downloadhistacom2-e4d1958e36458ad0b24e0f6fabd3934323d31561.tar.gz
histacom2-e4d1958e36458ad0b24e0f6fabd3934323d31561.tar.bz2
histacom2-e4d1958e36458ad0b24e0f6fabd3934323d31561.zip
got IE4 opening
Diffstat (limited to 'TimeHACK.Main/Windows95.cs')
-rw-r--r--TimeHACK.Main/Windows95.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/TimeHACK.Main/Windows95.cs b/TimeHACK.Main/Windows95.cs
index 8d5e1bd..0ce5176 100644
--- a/TimeHACK.Main/Windows95.cs
+++ b/TimeHACK.Main/Windows95.cs
@@ -59,6 +59,7 @@ namespace TimeHACK
private void startbutton_Click(object sender, EventArgs e)
{
startmenu.Show();
+ startmenu.BringToFront();
}
// Shutdown button
@@ -128,6 +129,14 @@ namespace TimeHACK
{
}
+
+ private void InternetExplorerToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ WinClassicIE4 ie = new WinClassicIE4();
+ ie.Show();
+ ie.BringToFront();
+ startmenu.Hide();
+ }
}
}