aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-08-25 00:07:44 -0400
committerlempamo <[email protected]>2017-08-25 00:07:44 -0400
commit12d308ccee2c052f97df9b7f0ad38381d0df0dab (patch)
tree16fcb5658be506cf2511d4bac507a9410f7c8205 /Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
parentc265ea20be5255e98b3627b66f4b8a787e0b690b (diff)
downloadhistacom2-12d308ccee2c052f97df9b7f0ad38381d0df0dab.tar.gz
histacom2-12d308ccee2c052f97df9b7f0ad38381d0df0dab.tar.bz2
histacom2-12d308ccee2c052f97df9b7f0ad38381d0df0dab.zip
learn to track all files plz
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs')
-rw-r--r--Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
index 1640818..83f8b5d 100644
--- a/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
+++ b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
@@ -75,7 +75,8 @@ namespace Histacom2.OS.Win95.Win95Apps
ListViewItem listViewItem1 = new ListViewItem(new string[] { "/totallynotthetimedistorter/" }, 0, Color.Black, Color.Empty, null);
ListViewItem listViewItem2 = new ListViewItem(new string[] { "FTP Client Setup.exe" }, 2, Color.Black, Color.Empty, null);
ListViewItem listViewItem3 = new ListViewItem(new string[] { "Web Chat Setup.exe" }, 2, Color.Black, Color.Empty, null);
- ftpFiles.Items.AddRange(new ListViewItem[] { listViewItem1, listViewItem2, listViewItem3 });
+ ListViewItem listViewItem4 = new ListViewItem(new string[] { "Guess The Number V1 Setup.exe" }, 2, Color.Black, Color.Empty, null);
+ ftpFiles.Items.AddRange(new ListViewItem[] { listViewItem1, listViewItem2, listViewItem3, listViewItem4 });
}
else if (objListViewItem.Text == "/totallynotthetimedistorter/")
{
@@ -104,6 +105,13 @@ namespace Histacom2.OS.Win95.Win95Apps
wm.StartWin95(opendownload, "Downloader", null, false, true);
opendownload.appName.Text = "Downloading: Time Distorter 0.1";
}
+ else if (objListViewItem.Text == "Guess The Number V1 Setup.exe")
+ {
+ WinClassicDownloader opendownload = new WinClassicDownloader();
+ WindowManager wm = new WindowManager();
+ wm.StartWin95(opendownload, "Downloader", null, false, true);
+ opendownload.appName.Text = "Downloading: Guess The Number V1";
+ }
}
}
}