aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/BaseOS.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/OS/BaseOS.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/OS/BaseOS.cs')
-rw-r--r--TimeHACK.Main/OS/BaseOS.cs15
1 files changed, 10 insertions, 5 deletions
diff --git a/TimeHACK.Main/OS/BaseOS.cs b/TimeHACK.Main/OS/BaseOS.cs
index a449d81..77fca89 100644
--- a/TimeHACK.Main/OS/BaseOS.cs
+++ b/TimeHACK.Main/OS/BaseOS.cs
@@ -149,7 +149,7 @@ namespace TimeHACK.OS.Win95
private void windowManagerTestToolStripMenuItem_Click(object sender, EventArgs e)
{
TestApp test = new TestApp();
- WinClassic app = wm.startWin95(test, "TestApp", null, true, true);
+ WinClassic app = wm.StartWin95(test, "TestApp", null, true, true);
AddTaskBarItem(app, app.Tag.ToString(), "TestApp", null);
app.BringToFront();
startmenu.Hide();
@@ -158,7 +158,7 @@ namespace TimeHACK.OS.Win95
private void downloaderTestToolStripMenuItem_Click(object sender, EventArgs e)
{
WinClassicDownloader opendownload = new WinClassicDownloader();
- WinClassic app = wm.startWin95(opendownload, "Downloader", null, false, true);
+ WinClassic app = wm.StartWin95(opendownload, "Downloader", null, false, true);
opendownload.appName.Text = "Downloading: Survive The Day";
AddTaskBarItem(app, app.Tag.ToString(), "Downloader", null);
@@ -170,7 +170,7 @@ namespace TimeHACK.OS.Win95
private void installerTestToolStripMenuItem_Click(object sender, EventArgs e)
{
WinClassicInstaller openinstaller = new WinClassicInstaller();
- WinClassic app = wm.startWin95(openinstaller, "Installer", null, false, true);
+ WinClassic app = wm.StartWin95(openinstaller, "Installer", null, false, true);
AddTaskBarItem(app, app.Tag.ToString(), "Installer", null);
@@ -211,7 +211,7 @@ namespace TimeHACK.OS.Win95
private void infoboxTestToolStripMenuItem_Click(object sender, EventArgs e)
{
- WinClassic app = wm.startInfobox95("AShifter's Infobox", "This is the very first TimeHACK Infobox. It's really easy to call, too! \n Just use wm.startInfobox95(String title, String text, Image erroricon)!", Properties.Resources.Win95Info);
+ WinClassic app = wm.StartInfobox95("AShifter's Infobox", "This is the very first TimeHACK Infobox. It's really easy to call, too! \n Just use wm.startInfobox95(String title, String text, Image erroricon)!", Properties.Resources.Win95Info);
app.BringToFront();
startmenu.Hide();
@@ -219,7 +219,7 @@ namespace TimeHACK.OS.Win95
private void WebChatToolStripMenuItem_Click(object sender, EventArgs e)
{
WebChat1998 wc = new WebChat1998();
- WinClassic app = wm.startWin95(wc, "Web Chat 1998", null, true, true);
+ WinClassic app = wm.StartWin95(wc, "Web Chat 1998", null, true, true);
AddTaskBarItem(app, app.Tag.ToString(), "Web Chat 1998", null);
@@ -290,6 +290,11 @@ namespace TimeHACK.OS.Win95
startmenu.Hide();
}
+ private void MSDOSPromptToolStripMenuItem1_Click(object sender, EventArgs e)
+ {
+ openApp.OpenApp("msdos");
+ }
+
//TODO: Add Outlook Express 4
}
}