Handy script to set an Intro on to application. Firstly create Form1 and then in Form1 create Form2.
Add a timer named "timer1". Set timer1 properties to Enabled is "True" and Interval is "5000" (5 Seconds).
Now use this script on timer tick
private void timer1_Tick(object sender, EventArgs e) { Form2 ShowForm2 = new Form2(); this.Hide(); ShowForm2.Show(); timer1.Stop(); }
Remember than Form1 is only hidden so when Form2 is closed Form1 will still be active in background. |