Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 966283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:08:00+00:00 2026-05-16T02:08:00+00:00

I created my splash screen using the method mentioned here: http://delphi.about.com/od/formsdialogs/a/splashscreen.htm I need to

  • 0

I created my splash screen using the method mentioned here: http://delphi.about.com/od/formsdialogs/a/splashscreen.htm

I need to show the splash screen for 3 seconds before showing the main form.

Please help. Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T02:08:01+00:00Added an answer on May 16, 2026 at 2:08 am

    Inside project file:

    program Project1;
    
    uses
      Forms,
      Unit1 in 'Unit1.pas' {Form1},
      uSplashScreen in 'uSplashScreen.pas' {frmSplashScreen};
    
    {$R *.res}
    
    begin
      Application.Initialize;
      Application.MainFormOnTaskbar := True;
    
      frmSplashScreen := TfrmSplashScreen.Create(nil);
      try
        frmSplashScreen.Show;
        // Create your application forms here
        Application.CreateForm(TForm1, Form1);
    
        while not frmSplashScreen.Completed do
          Application.ProcessMessages;
        frmSplashScreen.Hide;        
      finally
        frmSplashScreen.Free;
      end;
    
      Application.Run;
    end.
    

    Inside splash screen unit:

    unit uSplashScreen;
    
    interface
    
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, ExtCtrls;
    
    type
      TfrmSplashScreen = class(TForm)
        Timer1: TTimer;
        procedure FormShow(Sender: TObject);
        procedure Timer1Timer(Sender: TObject);
      private
        { Private declarations }
      public
        Completed: Boolean;
      end;
    
    var
      frmSplashScreen: TfrmSplashScreen;
    
    implementation
    
    {$R *.dfm}
    
    procedure TfrmSplashScreen.FormShow(Sender: TObject);
    begin
      OnShow := nil;
      Completed := False;
      Timer1.Interval := 3000; // 3s minimum time to show splash screen
      Timer1.Enabled := True;
    end;
    
    procedure TfrmSplashScreen.Timer1Timer(Sender: TObject);
    begin
      Timer1.Enabled := False;
      Completed := True;
    end;
    
    end.
    

    The splash screen will be visible for minimum time of 3 seconds or more if it will take more time to create all the forms of your application.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Ok, so i created a very simple splash screen using this tutorial: http://p-xr.com/android-tutorial-how-to-make-a-basic-splash-screen/ The
I created a simple splash screen using Blend and then copied the contents to
I'm trying to create a splash screen using LWUIT. I want a form to
Has anyone created a custom Silverlight Splash screen to replace the blue balls circular
Currently, I am showing splash screen in my desktop application using the following way
How do I call an activity from my splash screen using threads. just guide
I have created a splash screen in which i want to create two buttons
I've created a two splash screen iPhone app. Afterwards user is taken to first
Hey all, I've created a loading/splash screen that loads at the beginning of my
I created a simple splash screen application, and it works just fine only when

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.