aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win98/Win98Apps
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-10-14 10:46:30 -0400
committerlempamo <[email protected]>2017-10-14 10:46:30 -0400
commit3dbe19613d4a492c228b60bad54bbafc48c21202 (patch)
tree8754b1c454d2a9961f4a17f13bc46197dfcc0f68 /Histacom2/OS/Win98/Win98Apps
parent02ac42b71dff6b71659638c75adcb4e63f808a63 (diff)
downloadhistacom2-3dbe19613d4a492c228b60bad54bbafc48c21202.tar.gz
histacom2-3dbe19613d4a492c228b60bad54bbafc48c21202.tar.bz2
histacom2-3dbe19613d4a492c228b60bad54bbafc48c21202.zip
made installer completely functional this time
Diffstat (limited to 'Histacom2/OS/Win98/Win98Apps')
-rw-r--r--Histacom2/OS/Win98/Win98Apps/WebChat1999.cs2
-rw-r--r--Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs16
2 files changed, 10 insertions, 8 deletions
diff --git a/Histacom2/OS/Win98/Win98Apps/WebChat1999.cs b/Histacom2/OS/Win98/Win98Apps/WebChat1999.cs
index 9528b5a..004d99f 100644
--- a/Histacom2/OS/Win98/Win98Apps/WebChat1999.cs
+++ b/Histacom2/OS/Win98/Win98Apps/WebChat1999.cs
@@ -126,6 +126,8 @@ namespace Histacom2.OS.Win98.Win98Apps
await Task.Delay(3000); history.AppendText("12padams: its the only way to make sure that time travel works properly" + Environment.NewLine); receive.Play();
await Task.Delay(4500); history.AppendText("HiddenHacker: ok, so what do i need to do again?" + Environment.NewLine); receive.Play();
await Task.Delay(3500); history.AppendText($"12padams: as i said before, make sure that {SaveSystem.ProfileName} arrives safely in 2000" + Environment.NewLine); receive.Play();
+ await Task.Delay(3000); history.AppendText("HiddenHacker: but what if he doesnt make it?" + Environment.NewLine); receive.Play();
+ await Task.Delay(3500); history.AppendText("12padams: we will cross that bridge when we come to it" + Environment.NewLine); receive.Play();
}
private void button2_Click(object sender, EventArgs e)
diff --git a/Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs b/Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs
index 9f896e1..2f27899 100644
--- a/Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs
+++ b/Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs
@@ -310,23 +310,23 @@ namespace Histacom2.OS.Win95.Win95Apps
break;
case "ie":
- if (TitleScreen.frm95.ie != null) { wm.StartInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", InfoboxType.Warning, InfoboxButtons.OK); return; }
- TitleScreen.frm95.ie = wm.Init(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
- Program.AddTaskbarItem(TitleScreen.frm95.ie, TitleScreen.frm95.ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4);
- TitleScreen.frm95.ie.BringToFront();
- TitleScreen.frm95.ie.FormClosing += new FormClosingEventHandler(TitleScreen.frm95.InternetExplorer4_Closing);
+ if (TitleScreen.frm98.ie != null) { wm.StartInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", InfoboxType.Warning, InfoboxButtons.OK); return; }
+ TitleScreen.frm98.ie = wm.Init(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true);
+ Program.AddTaskbarItem(TitleScreen.frm98.ie, TitleScreen.frm98.ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4);
+ TitleScreen.frm98.ie.BringToFront();
+ TitleScreen.frm98.ie.FormClosing += new FormClosingEventHandler(TitleScreen.frm98.InternetExplorer4_Closing);
break;
case "web chat 99 setup":
- Win95Installer inst = new Win95Installer("Web Chat 1999");
- inst.InstallCompleted += (sendr, args) => TitleScreen.frm95.WebChatToolStripMenuItem.Visible = true;
+ WinClassicInstaller inst = new WinClassicInstaller("Web Chat 1999");
+ inst.InstallCompleted += (sendr, args) => TitleScreen.frm98.WebChatToolStripMenuItem.Visible = true;
WinClassic appInstaller = wm.Init(inst, "Web Chat Setup", null, true, true);
Program.AddTaskbarItem(appInstaller, appInstaller.Tag.ToString(), "Web Chat Setup", null);
appInstaller.BringToFront();
break;
case "time distorter setup":
- Win95Installer instTd = new Win95Installer("Time Distorter 0.2");
+ WinClassicInstaller instTd = new WinClassicInstaller("Time Distorter 0.2");
instTd.InstallCompleted += (sendr, args) =>
{
TitleScreen.frm95.TimeDistorterToolStripMenuItem.Visible = true;