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

Progress Bar using C#.net

56 second read
0
0
548

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

ChatGPT Free Online Download the ChatGPT App Easily

Have you ever wanted to talk to a friendly, smart robot that helps you with anything? Good…