aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.cs
diff options
context:
space:
mode:
authorJayXKanz666 <[email protected]>2017-07-06 18:34:45 +0200
committerJayXKanz666 <[email protected]>2017-07-06 18:34:45 +0200
commit38c30f0d3ba142fb68f0550341fdae2d353a8379 (patch)
tree40a0fa7692f467d4703ba1abb29fd4e068f4fa7f /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.cs
parent4b44847216ac4b498d088c11db5f928cc037d605 (diff)
parente4ee95004a1655a61355d64818d633bcca00fd52 (diff)
downloadhistacom2-38c30f0d3ba142fb68f0550341fdae2d353a8379.tar.gz
histacom2-38c30f0d3ba142fb68f0550341fdae2d353a8379.tar.bz2
histacom2-38c30f0d3ba142fb68f0550341fdae2d353a8379.zip
Merge remote-tracking branch 'refs/remotes/TimeHACKDevs/master'
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/")
+ {
+ }
}
}
}