diff options
Diffstat (limited to 'TimeHACK.Main/Windows95.cs')
| -rw-r--r-- | TimeHACK.Main/Windows95.cs | 9 |
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(); + } } } |
