aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/GlobalPrograms/WinClassicDownloader.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-09-13 11:13:30 -0400
committerlempamo <[email protected]>2017-09-13 11:13:30 -0400
commit74722bac5a707c206c3756ffdc156630af730fca (patch)
tree13514cacf3e882b40121bef030eb640648a0dc61 /Histacom2/GlobalPrograms/WinClassicDownloader.cs
parente4bb33426e4e1a3b5c5ef36866ef2947a7d4356d (diff)
parent364507865396c68c2ea52bf9ad1405d68b697d10 (diff)
downloadhistacom2-74722bac5a707c206c3756ffdc156630af730fca.tar.gz
histacom2-74722bac5a707c206c3756ffdc156630af730fca.tar.bz2
histacom2-74722bac5a707c206c3756ffdc156630af730fca.zip
Merge branch 'master' of https://github.com/Histacom2-Devs/Histacom2.git
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}";
}