Creating a Splash Screen in Delphi Applications

Programming language
Getty Images/ermingut

The most basic splash screen is just an image, or more precisely, a form with an image, that appears in the center of the screen when the application is loading. Splash screens are hidden when the application is ready to be used.

Below is more information on the different types of splash screens you may see, and why they're useful, as well as steps for creating your own Delphi splash screen for your application.

What Are Splash Screens Used For?

There are several types of splash screens. The most common are start-up splash screens - the ones you see when an application is loading. These usually display the application's name, author, version, copyright, ​an image, or some type of icon, that uniquely identifies it.

If you are a shareware developer, you could use splash screens to remind users to register the program. These may pop up when the program first launches, to tell the user that they can register if they want special features or to get email updates for new releases.

Some applications use splash screens to notify the user of the progress of a time-consuming process. If you look carefully, some really large programs use this type of splash screen when the program is loading background processes and dependencies. The last thing you want is for your users to think that your program is "dead" if some database task is performing. 

Creating a Splash Screen

Let's see how to create a simple start-up splash screen in a few steps:

  1. Add a new form to your project.
    Select New Form from the File menu in the Delphi IDE.
  2. Change the Name Property of the Form to something like SplashScreen.
  3. Change these Properties: BorderStyle to bsNone, Position to poScreenCenter.
  4. Customize your splash screen by adding components like labels, images, panels, etc.
    You could first add one TPanel component (Align: alClient) and play around with BevelInner, BevelOuter, BevelWidth, BorderStyle, and BorderWidth properties to produce some eye-candy effects.
  5. Select Project from the Options menu and move the Form from the Auto-create listbox to Available Forms.
    We'll create a form on the fly and then display it before the application is actually opened.
  6. Select Project Source from the View menu.
    You can also do this through Project > View Source.
  7. Add the following code after the begin statement of the Project Source code (the .DPR file):
    
    Application.Initialize; //this line exists!
    SplashScreen := TSplashScreen.Create(nil) ;
    SplashScreen.Show;
    SplashScreen.Update;
    
  8. After the final Application.Create() and before the Application.Run statement, add:
    
    SplashScreen.Hide;
    SplashScreen.Free;
    
  9. That's it! Now you can run the application.


In this example, depending on the speed of your computer, you will barely see your new splash screen, but if you have more than one form in your project, the splash screen will certainly show up.

For more information on making the splash screen stay a bit longer, read through the code in this Stack Overflow thread.

Tip: You can also make custom shaped Delphi forms.

Format
mla apa chicago
Your Citation
Gajic, Zarko. "Creating a Splash Screen in Delphi Applications." ThoughtCo, Aug. 26, 2020, thoughtco.com/creating-a-splash-screen-1058017. Gajic, Zarko. (2020, August 26). Creating a Splash Screen in Delphi Applications. Retrieved from https://www.thoughtco.com/creating-a-splash-screen-1058017 Gajic, Zarko. "Creating a Splash Screen in Delphi Applications." ThoughtCo. https://www.thoughtco.com/creating-a-splash-screen-1058017 (accessed March 29, 2024).