aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.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/WinClassicFTPClient.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/WinClassicFTPClient.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.cs
index ab7e61f..b1caef9 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.cs
@@ -33,6 +33,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
infoLabel.Text = "[200] OK";
welcomeLabel.Hide();
infoLabel.Show();
+ ftpFiles.Show();
}
else
{
@@ -57,9 +58,13 @@ namespace TimeHACK.OS.Win95.Win95Apps
{
Point objDrawingPoint = ftpFiles.PointToClient(Cursor.Position);
ListViewItem objListViewItem = new ListViewItem();
- if (objListViewItem.Text == "/software/")
+ if (objDrawingPoint != null)
{
+ objListViewItem = ftpFiles.GetItemAt(objDrawingPoint.X, objDrawingPoint.Y);
+ if (objListViewItem.Text == "/software/")
+ {
+ }
}
}
}