Answered by:
Windows Forms Application Update Function Progressbar ( VS 2017 )

Question
-
Hi
I have a question regarding Windows Forms App. After publishing the application and while downloading the updated version on the desktop, is there any possibility of showing a progress bar that shows the update status?
I set up the application to check for updates after starting the application. But it is so fast that the application directly opens up the updated version. My concern is to check if there is anyway that i could show a progressbar while the update is running.
Thanks in advance
- Moved by Sara LiuMicrosoft contingent staff Tuesday, April 17, 2018 7:41 AM
Friday, April 6, 2018 10:47 PM
Answers
-
Or I would ask in one of these forums:
https://social.msdn.microsoft.com/Forums/en-US/home?forum=visualstudiogeneral
https://social.msdn.microsoft.com/Forums/en-us/home?forum=windowsgeneraldevelopmentissues
Richard Mueller - MVP Enterprise Mobility (Identity and Access)
- Proposed as answer by Dave PatrickMVP Tuesday, April 17, 2018 1:19 PM
- Marked as answer by Dave PatrickMVP Friday, April 20, 2018 12:27 PM
Tuesday, April 17, 2018 1:10 PM -
I'd also try asking for help over here.
https://social.msdn.microsoft.com/Forums/windows/en-US/home?category=windowsforms
https://social.msdn.microsoft.com/Forums/windowsapps/en-US/home?category=windowsapps
Regards, Dave Patrick ....
Microsoft Certified Professional
Microsoft MVP [Windows Server] Datacenter Management
Disclaimer: This posting is provided "AS IS" with no warranties or guarantees, and confers no rights.- Proposed as answer by Guido Franzke Tuesday, April 17, 2018 1:37 PM
- Marked as answer by Dave PatrickMVP Friday, April 20, 2018 12:27 PM
Tuesday, April 17, 2018 1:21 PM
All replies
-
May This Help You
Use System.Threading.Thread.Sleep
C# Code
for(int i = 0; i <= 10; i++) { progressBar1.Value = i * 10; System.Threading.Thread.Sleep(100); }
VB.Net CodeFor i As Integer = 0 To 10 progressBar1.Value = i * 10 System.Threading.Thread.Sleep(100) Next i
Saturday, April 7, 2018 4:59 AM -
Or I would ask in one of these forums:
https://social.msdn.microsoft.com/Forums/en-US/home?forum=visualstudiogeneral
https://social.msdn.microsoft.com/Forums/en-us/home?forum=windowsgeneraldevelopmentissues
Richard Mueller - MVP Enterprise Mobility (Identity and Access)
- Proposed as answer by Dave PatrickMVP Tuesday, April 17, 2018 1:19 PM
- Marked as answer by Dave PatrickMVP Friday, April 20, 2018 12:27 PM
Tuesday, April 17, 2018 1:10 PM -
I'd also try asking for help over here.
https://social.msdn.microsoft.com/Forums/windows/en-US/home?category=windowsforms
https://social.msdn.microsoft.com/Forums/windowsapps/en-US/home?category=windowsapps
Regards, Dave Patrick ....
Microsoft Certified Professional
Microsoft MVP [Windows Server] Datacenter Management
Disclaimer: This posting is provided "AS IS" with no warranties or guarantees, and confers no rights.- Proposed as answer by Guido Franzke Tuesday, April 17, 2018 1:37 PM
- Marked as answer by Dave PatrickMVP Friday, April 20, 2018 12:27 PM
Tuesday, April 17, 2018 1:21 PM