aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-06-02 08:51:35 -0700
committerGitHub <[email protected]>2017-06-02 08:51:35 -0700
commit9f7790cef9e9f08c46d12d374e8733254d56eaf0 (patch)
tree3e9be0a6bb6acdbc0227483badc48e63a4f0467d /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs
parentb08c213ecf4e04b4989d1c42749238b8b7970501 (diff)
parent1b6c41b0a471ba27a8c9bacf1ecf1c01d144f319 (diff)
downloadhistacom2-9f7790cef9e9f08c46d12d374e8733254d56eaf0.tar.gz
histacom2-9f7790cef9e9f08c46d12d374e8733254d56eaf0.tar.bz2
histacom2-9f7790cef9e9f08c46d12d374e8733254d56eaf0.zip
Merge pull request #82 from IBMPCDOS5/master
Lots of changes
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs8
1 files changed, 7 insertions, 1 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs
index 573c9d7..e8f97a0 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWindowsExplorer.cs
@@ -126,7 +126,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
dirLbl.Text = currentDirectory;
CheckLbl();
} catch (Exception ex) {
- wm.startInfobox95("Windows Explorer", "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();
}
}
@@ -586,5 +586,11 @@ namespace TimeHACK.OS.Win95.Win95Apps
{
((Form)this.TopLevelControl).Close();
}
+
+ private void AboutWindows95ToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ WindowManager wm = new WindowManager();
+ wm.startAboutBox95("Windows 95", "Microsoft Windows 95 Rev B", Properties.Resources.WinClassicAbout95);
+ }
}
}