From cf7392f930598bbbdf50cbb3a4f2bf91a2b44022 Mon Sep 17 00:00:00 2001 From: Alex-TIMEHACK Date: Fri, 2 Jun 2017 15:06:52 +0100 Subject: Added my File Explorer It also has a File Open and File Save thing configured for the Notepad --- TimeHACK.Main/TitleScreen.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'TimeHACK.Main/TitleScreen.cs') 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) { -- cgit v1.2.3