Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //make sure to use a timer and double click it. also make a form2
- // for the loading screen to work. also you will have to set the timer to true in its properties
- //and set the interval to any thing you'd like
- flowLayoutPanel2.Width += 5; //use what ever you want i was using a pannel
- if (flowLayoutPanel2.Width >= 295) //changethe 295 to what ever value is at ur max on the download
- {
- timer1.Stop(); //you need a timer, double click the timer
- MessageBox.Show("Finished Downloading"); //set this to what ever you want
- Form2 f2 = new Form2(); //make a new form called form2
- f2.Show();
- this.Hide();
Add Comment
Please, Sign In to add comment