Click here to Skip to main content
15,888,984 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
I have a code that contain one line that take something like 8 seconds or even more.
I want to make some indication for the user that the process is still active.
problems:
1. I don't know how much time it will take, something between 0 milliseconds and 2 minutes.
2. I can't use background-worker because it's only one line so the progress will be between 0% to 100% and will show nothing in the time between.

Maybe 'hourglass' or some Progress bar but not with percent?
What should I do?
Thanks,
Shai.
Posted
Comments
Per Söderlund 17-Aug-10 9:13am    
What is the one line of code?

you can set the Style property of the progressbar to "Marquee" and it would just show a continuous progress ...
 
Share this answer
 
Thanks :-)
It was very useful...
I create a new class that inherit from Progressbar and contains BackgroundWorker for doing the event in a diffrent thread that can also increment the ProgressBar in the main application.
 
Share this answer
 
Comments
Toli Cuturicu 17-Aug-10 12:03pm    
Reason for my vote of 1
fake answer

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