diff options
| author | lempamo <[email protected]> | 2017-09-12 19:55:28 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-09-12 19:55:28 -0500 |
| commit | 5b72a30b11422473d2b6fd35e2909cd2a7eb5395 (patch) | |
| tree | 8877faa271b340b316471d035bfcc2299e0742ec /Histacom2/GlobalPrograms/WinClassicDownloader.cs | |
| parent | ab9f118edb06826ed49c0b46bb1bce38d407e4f6 (diff) | |
| parent | 6d26e57fd4519cea330f51e491bfe54cc347719a (diff) | |
| download | histacom2-5b72a30b11422473d2b6fd35e2909cd2a7eb5395.tar.gz histacom2-5b72a30b11422473d2b6fd35e2909cd2a7eb5395.tar.bz2 histacom2-5b72a30b11422473d2b6fd35e2909cd2a7eb5395.zip | |
Merge pull request #158 from IBMPCDOS5/master
Master
Diffstat (limited to 'Histacom2/GlobalPrograms/WinClassicDownloader.cs')
| -rw-r--r-- | Histacom2/GlobalPrograms/WinClassicDownloader.cs | 6 |
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}"; } |
