progress bar in windows application c#

A progress bar is a control that an application can use to indicate the progress of a lengthy operation such as calculating a complex result, downloading a large file from the Web etc.
ProgressBar controls are used whenever an operation takes more than a short period of time. The Maximum and Minimum properties define the range of values to represent the progress of a task.

Minimum : Sets the lower value for the range of valid values for progress.
Maximum : Sets the upper value for the range of valid values for progress.
Value   : This property obtains or sets the current level of progress.
By default maximum value will be 100 and minimum value will be 0. As the task proceeds, the Progress Bar fills in from the left to the right. To delay the program briefly so that you can view changes in the progress bar clearly.

private void button1_Click(object sender, EventArgs e)
        {
            progressBar1.Minimum = 0;
            progressBar1.Maximum = 200;
            int i;
            for(i = 0; i <= 200; i++)
            {
               
                progressBar1.Value = i;
            }
        }


Out-Put:-


How to save the value of radiobuttonlist in database asp.net C# , How to insert multiple Checkboxlist value into database in asp.net c#,

progress bar in windows application c# progress bar in windows application c# Reviewed by NEERAJ SRIVASTAVA on 11:52:00 AM Rating: 5

No comments:

Powered by Blogger.