Home C#.net Progress Bar using C#.net

Progress Bar using C#.net

56 second read
0
0
576

This tutorial will teach you  how to make a  progress bar using C#.net step by step.

drap the timer contral on form it will display on the component tray.double click the timer

you can use the following code snippet to load the progressbar. paste the code inside the timer1_Tick Event.

 private void timer1_Tick(object sender, EventArgs e)
        {
            progressBar1.Value = progressBar1.Value + 1;

            if (progressBar1.Value >= 99)
            {
                Main m = new Main();
                this.Hide();
                m.Show();
                timer1.Enabled = false;

            }

        }

 

 

 

Load More Related Articles
Load More By admin
Load More In C#.net

Leave a Reply

Your email address will not be published. Required fields are marked *

Check Also

Tesla Pi Phone: Is This the Next Super-Phone? Full Review & Details

What Is the Tesla Pi Phone?   Imagine if Tesla, the company that makes famous electri…