aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-07-06 13:49:20 -0400
committerlempamo <[email protected]>2017-07-06 13:49:20 -0400
commit88711b440b3a55d09118d2c42b1bb8930936eb90 (patch)
tree33020f602d1891cd7ff0a87c18a2d20d05ebbecd /TimeHACK.Main/OS/Win95/Win95.cs
parent77f783fe2b6999720c900aaf32103bec906f9da9 (diff)
downloadhistacom2-88711b440b3a55d09118d2c42b1bb8930936eb90.tar.gz
histacom2-88711b440b3a55d09118d2c42b1bb8930936eb90.tar.bz2
histacom2-88711b440b3a55d09118d2c42b1bb8930936eb90.zip
And you can install and open FTP Client
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs
index c5e7799..32d619f 100644
--- a/TimeHACK.Main/OS/Win95/Win95.cs
+++ b/TimeHACK.Main/OS/Win95/Win95.cs
@@ -285,6 +285,15 @@ namespace TimeHACK.OS.Win95
app.BringToFront();
startmenu.Hide();
}
+ else if (objListViewItem.Text == "FTP Client Setup")
+ {
+ Win95Installer inst = new Win95Installer("FTP Client");
+ inst.InstallCompleted += (sendr, args) => WebChatToolStripMenuItem.Visible = true;
+ WinClassic app = wm.StartWin95(inst, "FTP Client Setup", null, true, true);
+ AddTaskBarItem(app, app.Tag.ToString(), "FTP Client Setup", null);
+ app.BringToFront();
+ startmenu.Hide();
+ }
}
}
}
@@ -438,6 +447,14 @@ namespace TimeHACK.OS.Win95
app.BringToFront();
startmenu.Hide();
}
+ private void FTPClientToolStripMenuItem_Click(object sender, EventArgs e)
+ {
+ WinClassic app = wm.StartWin95(new WinClassicFTPClient(), "FTP Client", null, true, true);
+
+ AddTaskBarItem(app, app.Tag.ToString(), "FTP Client", null);
+ app.BringToFront();
+ startmenu.Hide();
+ }
}
public class MyRenderer : ToolStripProfessionalRenderer
{