aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-07-06 10:41:05 -0400
committerlempamo <[email protected]>2017-07-06 10:41:05 -0400
commite4ee95004a1655a61355d64818d633bcca00fd52 (patch)
tree8288001fccb67c6e093cae24beacb82ba61f4fb4 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs
parent6958c950223e1b1db9648f92a40fe7dd925ca466 (diff)
downloadhistacom2-e4ee95004a1655a61355d64818d633bcca00fd52.tar.gz
histacom2-e4ee95004a1655a61355d64818d633bcca00fd52.tar.bz2
histacom2-e4ee95004a1655a61355d64818d633bcca00fd52.zip
Changed Installer and added EULA
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs
index d70b520..81b8504 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs
@@ -206,6 +206,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
break;
case "12PADAMS":
webBrowser1.Document.GetElementById("wc_b").Click += new HtmlElementEventHandler(WCDownloadButton_Click);
+ webBrowser1.Document.GetElementById("ftp_b").Click += new HtmlElementEventHandler(FTPDownloadButton_Click);
if (!TitleScreen.frm95.hiddenpadamsFound) webBrowser1.Document.GetElementById("distort").Style += "visibility:hidden;";
break;
case "GOOGLE":
@@ -221,6 +222,14 @@ namespace TimeHACK.OS.Win95.Win95Apps
}
}
+ private void FTPDownloadButton_Click(object sender, HtmlElementEventArgs e)
+ {
+ WinClassicDownloader opendownload = new WinClassicDownloader();
+ WindowManager wm = new WindowManager();
+ wm.StartWin95(opendownload, "Downloader", null, false, true);
+ opendownload.appName.Text = "Downloading: FTP Client";
+ }
+
//TODO: Add more websites
//TODO: Relabel Buttons And Things
}