aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
diff options
context:
space:
mode:
authorAlex-TIMEHACK <[email protected]>2017-11-04 09:50:43 +0000
committerAlex-TIMEHACK <[email protected]>2017-11-04 09:50:43 +0000
commitf933ce9b841a5f302066336877f86119de034eb4 (patch)
tree50e23551bae5ade3a263d9c1c054fb326a7ab5a6 /Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
parent6ab1468786f1e865e9ff408d32149f9c9620d844 (diff)
parent382f0167714bbcad00ab710fe7dcfa05eaeb88ac (diff)
downloadhistacom2-f933ce9b841a5f302066336877f86119de034eb4.tar.gz
histacom2-f933ce9b841a5f302066336877f86119de034eb4.tar.bz2
histacom2-f933ce9b841a5f302066336877f86119de034eb4.zip
Updated my fork!
Conflicts: Histacom2/TitleScreen.Designer.cs Histacom2/TitleScreen.cs
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs')
-rw-r--r--Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs33
1 files changed, 17 insertions, 16 deletions
diff --git a/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
index 55a4ee2..df531c3 100644
--- a/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
+++ b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs
@@ -56,7 +56,23 @@ namespace Histacom2.OS.Win95.Win95Apps
}
}
- private void ftpItems_Click(object sender, EventArgs e)
+
+ private void btnCancel_Click(object sender, EventArgs e)
+ {
+ ParentForm.Close();
+ }
+
+ private void WinClassicFTPClient_Load(object sender, EventArgs e)
+ {
+
+ }
+
+ private void topBar_Paint(object sender, PaintEventArgs e)
+ {
+ topBar.BackColor = SaveSystem.currentTheme.threeDObjectsColor;
+ }
+
+ private void ftpFiles_DoubleClick(object sender, EventArgs e)
{
try
{
@@ -120,20 +136,5 @@ namespace Histacom2.OS.Win95.Win95Apps
}
} catch { } // Try catch due to if you have more then one item selected the game crashing.
}
-
- private void btnCancel_Click(object sender, EventArgs e)
- {
- ParentForm.Close();
- }
-
- private void WinClassicFTPClient_Load(object sender, EventArgs e)
- {
-
- }
-
- private void topBar_Paint(object sender, PaintEventArgs e)
- {
- topBar.BackColor = SaveSystem.currentTheme.threeDObjectsColor;
- }
}
}