I guess you want what is known as a custom "splash screen" to display when the program first starts up.
How to Embed and Retrieve Resource in C# Once you have attached the graphics file to your project, then you will need to create a separate form to display it on.
Do this by adding a PictureBox control to your form and retrieving the bitmap resource for display.
Next you will need to program the form to close by itself after a brief time delay.
There are a couple of ways to do this, but they all begin the moment the splash screen is first shown.
You need connect into the Shown event of your 'splash screen' form.
When this event fires, you method handler will need to either start a timer and set up a Tick handler, or do this .....
Thread.Sleep(3000); // a 3 second delay.
this.Close(); // close this form.
Now you need to display it. This is easiest to do in the main form's constructor by calling this method.
private void DisplaySplashScreen()
{
using (SplashScreen form = new SplashScreen())
{
form.ShowDialog();
}
}
That assumes your form is named SplashScreeen.
Rudedog =8^D
Mark the best replies as answers. "Fooling computers since 1971."