diff options
| author | lempamo <[email protected]> | 2017-07-06 10:41:05 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-07-06 10:41:05 -0400 |
| commit | e4ee95004a1655a61355d64818d633bcca00fd52 (patch) | |
| tree | 8288001fccb67c6e093cae24beacb82ba61f4fb4 /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs | |
| parent | 6958c950223e1b1db9648f92a40fe7dd925ca466 (diff) | |
| download | histacom2-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.cs | 9 |
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 } |
