progress control bar
-
can anybody give me a tutorial on using the progress control bar. thnaks very much
-
can anybody give me a tutorial on using the progress control bar. thnaks very much
The following code can help drag and drop on form, adjust the size as per your requirements. private System.Windows.Forms.ProgressBar progressBar1; this.progressBar1 = new System.Windows.Forms.ProgressBar(); progressBar1.Maximum = 100; progressBar1.Minimum = 0; progressBar1.Step = 100 /10;
-
The following code can help drag and drop on form, adjust the size as per your requirements. private System.Windows.Forms.ProgressBar progressBar1; this.progressBar1 = new System.Windows.Forms.ProgressBar(); progressBar1.Maximum = 100; progressBar1.Minimum = 0; progressBar1.Step = 100 /10;
I want it to be like a profit bar that tells me if the stock is winning or loosing according to a database that gives the prices of the stock. how do i set the progress bar to do so. and how do i make it give more than one color. for example if it is loosing it gives red and if it is winning it gives green thanks
-
can anybody give me a tutorial on using the progress control bar. thnaks very much
Here u have very clear information about the Progress control bar http://msdn2.microsoft.com/en-gb/library/ms670342.aspx. if u have any doubts after this please reply i can explain u clearly bye.......
-
I want it to be like a profit bar that tells me if the stock is winning or loosing according to a database that gives the prices of the stock. how do i set the progress bar to do so. and how do i make it give more than one color. for example if it is loosing it gives red and if it is winning it gives green thanks