aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/TitleScreen.cs
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-06-02 15:06:52 +0100
committerAlex-TIMEHACK <[email protected]>2017-06-02 15:06:52 +0100
commitcf7392f930598bbbdf50cbb3a4f2bf91a2b44022 (patch)
treee9fc63af4b098b2a58c92235d2ab20228687d9ef /TimeHACK.Main/TitleScreen.cs
parenta1b2e2b65db0c6db12c49f7a5fa1c136467234c9 (diff)
downloadhistacom2-cf7392f930598bbbdf50cbb3a4f2bf91a2b44022.tar.gz
histacom2-cf7392f930598bbbdf50cbb3a4f2bf91a2b44022.tar.bz2
histacom2-cf7392f930598bbbdf50cbb3a4f2bf91a2b44022.zip
Added my File Explorer
It also has a File Open and File Save thing configured for the Notepad
Diffstat (limited to 'TimeHACK.Main/TitleScreen.cs')
-rw-r--r--TimeHACK.Main/TitleScreen.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/TimeHACK.Main/TitleScreen.cs b/TimeHACK.Main/TitleScreen.cs
index 1b3c52c..ea512e4 100644
--- a/TimeHACK.Main/TitleScreen.cs
+++ b/TimeHACK.Main/TitleScreen.cs
@@ -166,6 +166,22 @@ namespace TimeHACK
frm95.Close();
frm95 = null;
+ try
+ {
+ // Time to close all the game applications
+ foreach (Form frm in Application.OpenForms)
+ {
+ if (frm.Tag.ToString() != "ignoreFormOnTaskbar")
+ {
+ frm.Close();
+ }
+ }
+ } catch {
+
+ }
+
+
+
// If VM Mode is not enabled
if (vm_mode.Checked != true)
{