Click here to Skip to main content
15,908,455 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello All,

I am doing a large searching so i want implement progress bar until data is not fetching.How we will implement this dynamically?
Posted
Comments
DamithSL 6-May-14 3:26am    
What is your application type?
Sergey Alexandrovich Kryukov 6-May-14 3:27am    
Are you saying that you know how to implement it "statically"? :-) What is that supposed to mean?<br>
—SA
rummer 6-May-14 6:24am    
Hello,

My question is I want to show progress bar image until receiving data. We don't want specific time.It must depend on server response until it'd show on page.

1 solution

Although your questions definitely needs more detail in short you need this:


progressBar1.Maximum = checkedListBox1.Items.Count;
progressBar1.Step = 1;
[additinal code]
progressBar1.PerformStep();
 
Share this answer
 
Comments
rummer 6-May-14 6:25am    
Hello,

My question is I want to show progress bar image until receiving data. We don't want specific time.It must depend on server response until it'd show on page.

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