aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/GlobalPrograms/WinClassicDownloader.cs
diff options
context:
space:
mode:
authorFloppyDiskDrive <[email protected]>2017-09-01 21:26:30 -0500
committerFloppyDiskDrive <[email protected]>2017-09-01 21:26:30 -0500
commitc51f7230320b9d59c7f49aeab1263242855496cc (patch)
tree585e9e8dc09efc96ef067e2f83607f0875ea03a7 /Histacom2/GlobalPrograms/WinClassicDownloader.cs
parentb8b914d600a18a25448c0ddcde963a3e9a30a534 (diff)
downloadhistacom2-c51f7230320b9d59c7f49aeab1263242855496cc.tar.gz
histacom2-c51f7230320b9d59c7f49aeab1263242855496cc.tar.bz2
histacom2-c51f7230320b9d59c7f49aeab1263242855496cc.zip
Cleaned up the Downloader UI a bit more
Added the classic progressbar
Diffstat (limited to 'Histacom2/GlobalPrograms/WinClassicDownloader.cs')
-rw-r--r--Histacom2/GlobalPrograms/WinClassicDownloader.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Histacom2/GlobalPrograms/WinClassicDownloader.cs b/Histacom2/GlobalPrograms/WinClassicDownloader.cs
index ba432d8..b809760 100644
--- a/Histacom2/GlobalPrograms/WinClassicDownloader.cs
+++ b/Histacom2/GlobalPrograms/WinClassicDownloader.cs
@@ -32,7 +32,7 @@ namespace Histacom2.OS.Win95.Win95Apps
amountDLed = amountDLed + 8;
if (8 > amountToDL - amountDLed)
{
- progBar.Value = amountToDL;
+ progressBar1.Value = amountToDL;
amountLbl.Text = $"Downloaded {amountDLed} KB out of {amountToDL}";
switch (appName.Text)
@@ -67,8 +67,8 @@ namespace Histacom2.OS.Win95.Win95Apps
}
else
{
- progBar.Maximum = amountToDL;
- progBar.Value = amountDLed;
+ progressBar1.Maximum = amountToDL;
+ progressBar1.Value = amountDLed;
}
amountLbl.Text = $"Downloaded {amountDLed} KB out of {amountToDL}";
}