in my splash code i get an error. This is a separate form to the regular.
public Form1()
{
InitializeComponent();
Thread t1 = new Thread(new ThreadStart(SplashForm));
t1.Start();
Thread.Sleep(5000); // The amount of time we want our splash form visible
t1.Abort();
Thread.Sleep(1000);
}
Basically on the part that says (new ThreadStart(SplashForm));
I get an error on "SplashForm".
The splash form is the name of the form. It says it is a type but is used as a variable.
Any ideas?