Click here to Skip to main content
15,867,950 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to set Progress Bar for a windows service in C#? I am automating the windows service using Run Button and Stopping via Stop Button. I want to set a progress bar when the Windows service is running. I wanrt to do so in a windows application.
Posted

Assuming you have a Windows.Form you should have a look here


ProgressBar Class
[^]

and here
ProgressBar in C#[^]

or here
http://www.dotnetperls.com/progressbar[^]
 
Share this answer
 
May be this will help you...

progress bar in c# windows application program[^]
 
Share this answer
 
A service has no UI so you can't do it. You would need to have a second application that can communicate with the service, that actually displays the progress.
 
Share this answer
 
Comments
Rahul 105 14-Jul-14 1:20am    
When the service is over it must stop.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900