From 71ec75dc79e2b5632216dc801dfeaf7510e25210 Mon Sep 17 00:00:00 2001 From: JayXKanz666 Date: Sun, 2 Jul 2017 22:44:11 +0200 Subject: Added lots of features to WinClassicTerminal.cs -Added CMD redirection -Added menubar that was missing -And more (look at the source :P) --- TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs') diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs b/TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs index 3a263a5..89a6b6f 100644 --- a/TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs +++ b/TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs @@ -151,7 +151,7 @@ namespace TimeHACK.OS.Win95.Win95Apps dirLbl.Text = currentDirectory; CheckLbl(); } catch (Exception ex) { - wm.startInfobox95("Exploring - C:", "Error with the file explorer \n" + ex.Message, Properties.Resources.Win95Info); + wm.StartInfobox95("Exploring - C:", "Error with the file explorer \n" + ex.Message, Properties.Resources.Win95Info); ((Form)this.TopLevelControl).Close(); } } @@ -548,7 +548,7 @@ namespace TimeHACK.OS.Win95.Win95Apps private void FolderToolStripMenuItem_Click(object sender, EventArgs e) { if (File.Exists(currentDirectory + "\\New Folder")) { - wm.startInfobox95("Windows Explorer", "This directory already exists", Properties.Resources.Win95Info); + wm.StartInfobox95("Windows Explorer", "This directory already exists", Properties.Resources.Win95Info); } else { Directory.CreateDirectory(currentDirectory + "\\New Folder"); SaveDirectoryInfo(currentDirectory + "\\New Folder", false, "New Folder", true); @@ -575,7 +575,7 @@ namespace TimeHACK.OS.Win95.Win95Apps { if (txtSave.Text == "") { - wm.startInfobox95("Windows Explorer", "Please enter a filename", Properties.Resources.Win95Info); + wm.StartInfobox95("Windows Explorer", "Please enter a filename", Properties.Resources.Win95Info); } else { @@ -604,7 +604,7 @@ namespace TimeHACK.OS.Win95.Win95Apps { if (!File.Exists(Path.Combine(currentDirectory, mainView.FocusedItem.Text))) { - wm.startInfobox95("Windows Explorer", "This directory doesn't exist", Properties.Resources.Win95Info); + wm.StartInfobox95("Windows Explorer", "This directory doesn't exist", Properties.Resources.Win95Info); } else { @@ -626,7 +626,7 @@ namespace TimeHACK.OS.Win95.Win95Apps private void AboutWindows95ToolStripMenuItem_Click(object sender, EventArgs e) { WindowManager wm = new WindowManager(); - wm.startAboutBox95("Windows 95", "Microsoft Windows 95 Rev B", Properties.Resources.WinClassicAbout95); + wm.StartAboutBox95("Windows 95", "Microsoft Windows 95 Rev B", Properties.Resources.WinClassicAbout95); } private void RenameToolStripMenuItem_Click(object sender, EventArgs e) @@ -650,13 +650,13 @@ namespace TimeHACK.OS.Win95.Win95Apps setText = mainView.FocusedItem.Text; if (setText == "") { - wm.startInfobox95("Windows Explorer", "Please enter a new directory name", Properties.Resources.Win95Info); + wm.StartInfobox95("Windows Explorer", "Please enter a new directory name", Properties.Resources.Win95Info); } else { if (Directory.Exists(setText)) { - wm.startInfobox95("Windows Explorer", "That directory already exists.", Properties.Resources.Win95Info); + wm.StartInfobox95("Windows Explorer", "That directory already exists.", Properties.Resources.Win95Info); } else { -- cgit v1.2.3