aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-06-10 23:58:33 -0400
committerlempamo <[email protected]>2017-06-10 23:58:33 -0400
commit83548f23c2b9617a7ac407935d44f265456826bd (patch)
tree4ffbfc538b98f1f2495411231ed0b6a593f27aa0 /TimeHACK.Main/OS
parent5dd994748cf8488e0e0705790b30f6abd7616722 (diff)
downloadhistacom2-83548f23c2b9617a7ac407935d44f265456826bd.tar.gz
histacom2-83548f23c2b9617a7ac407935d44f265456826bd.tar.bz2
histacom2-83548f23c2b9617a7ac407935d44f265456826bd.zip
survive the day is working
while its being worked on, you can access it via the internet connection wizard in the start menu
Diffstat (limited to 'TimeHACK.Main/OS')
-rw-r--r--TimeHACK.Main/OS/Win2K/Win2KApps/SurviveTheDay.resx3
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.Designer.cs1
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.cs14
3 files changed, 18 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win2K/Win2KApps/SurviveTheDay.resx b/TimeHACK.Main/OS/Win2K/Win2KApps/SurviveTheDay.resx
index 29dcb1b..aac33d5 100644
--- a/TimeHACK.Main/OS/Win2K/Win2KApps/SurviveTheDay.resx
+++ b/TimeHACK.Main/OS/Win2K/Win2KApps/SurviveTheDay.resx
@@ -117,4 +117,7 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
+ <metadata name="timer1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+ <value>17, 17</value>
+ </metadata>
</root> \ No newline at end of file
diff --git a/TimeHACK.Main/OS/Win95/Win95.Designer.cs b/TimeHACK.Main/OS/Win95/Win95.Designer.cs
index 92e238a..27749a2 100644
--- a/TimeHACK.Main/OS/Win95/Win95.Designer.cs
+++ b/TimeHACK.Main/OS/Win95/Win95.Designer.cs
@@ -326,6 +326,7 @@ namespace TimeHACK.OS.Win95
this.InternetConnectionWizardToolStripMenuItem.Name = "InternetConnectionWizardToolStripMenuItem";
this.InternetConnectionWizardToolStripMenuItem.Size = new System.Drawing.Size(219, 22);
this.InternetConnectionWizardToolStripMenuItem.Text = "Internet Connection Wizard";
+ this.InternetConnectionWizardToolStripMenuItem.Click += new System.EventHandler(this.temp_for_std);
//
// NetMeetingToolStripMenuItem
//
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs
index 79a0a82..bd3df96 100644
--- a/TimeHACK.Main/OS/Win95/Win95.cs
+++ b/TimeHACK.Main/OS/Win95/Win95.cs
@@ -347,6 +347,20 @@ namespace TimeHACK.OS.Win95
story.startObjective();
}
+ private void temp_for_std(object sender, EventArgs e)
+ {
+ Win2K.Win2KApps.SurviveTheDay std = new Win2K.Win2KApps.SurviveTheDay();
+ WinClassic app = wm.startWin95(std, "Survive The Day", null, false, false);
+ AddTaskBarItem(app, app.Tag.ToString(), "Survive The Day", null);
+
+ nonimportantapps.Add(app);
+ nonimportantapps[nonimportantapps.Count - 1].BringToFront();
+ nonimportantapps[nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing);
+
+ app.BringToFront();
+ startmenu.Hide();
+ }
+
//TODO: Add Outlook Express 4
}
}