aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-07-02 13:45:58 -0700
committerGitHub <[email protected]>2017-07-02 13:45:58 -0700
commitddbca5032ce763c43894088a5b5c0fba8f035daa (patch)
tree855e94fb60bbdaf1fbd3427ef8f46193fd22a4d7 /TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs
parent3de51a2e1b9224e8a8355e3945e458e1651821a9 (diff)
parent71ec75dc79e2b5632216dc801dfeaf7510e25210 (diff)
downloadhistacom2-ddbca5032ce763c43894088a5b5c0fba8f035daa.tar.gz
histacom2-ddbca5032ce763c43894088a5b5c0fba8f035daa.tar.bz2
histacom2-ddbca5032ce763c43894088a5b5c0fba8f035daa.zip
Merge pull request #109 from jayxkanz666/master
Added lots of features to WinClassicTerminal.cs
Diffstat (limited to 'TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs')
-rw-r--r--TimeHACK.Main/GlobalPrograms/WinClassicWindowsExplorer.cs14
1 files changed, 7 insertions, 7 deletions
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
{