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

  • SEARCH
  • Home
  • 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 7081053
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:52:19+00:00 2026-05-28T06:52:19+00:00

I have a project which has a main form and some other forms. When

  • 0

I have a project which has a main form and some other forms.
When the app loads it needs to carry out some tasks and show the results in a modal form on top of the main form.
The problem I have is that if I put the call to the function to do the tasks / creates and Show the modal form in the main forms onshow event the modal form appears but the main form does not until the modal form is closed, which is what I would expect to happen. To counter this I have added a timer to the main form and start it on the main forms onshow event the timer calls the function to do the tasks / create and show the modal form. So now the main form appears before the modal form.

However I cannot see this being the best solution and was wondering if anyone could offer a better one.

I am using Delphi 7

Colin

  • 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-28T06:52:20+00:00Added an answer on May 28, 2026 at 6:52 am

    One commonly used option is to post yourself a message in the form’s OnShow. Like this:

    const
      WM_SHOWMYOTHERFORM = WM_USER + 0;
    
    type
      TMyMainForm = class(TForm)
        procedure FormShow(Sender: TObject);
      protected
        procedure WMShowMyOtherForm(var Message: TMessage); message WM_SHOWMYOTHERFORM;
      end;
    
    ...
    
    
    procedure TMyMainForm.FormShow(Sender: TObject);
    begin
      PostMessage(Handle, WM_SHOWMYOTHERFORM, 0, 0);
    end;
    
    procedure TMyMainForm.WMShowMyOtherForm(var Message: TMessage);
    begin
      inherited;
      with TMyOtherForm.Create(nil) do begin
        try
          ShowModal;
        finally
          Free;
        end;
      end;
    end;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I Have a Windows Form Project , which has a main form,and in this
I have a C++/CLI project which has a child form with some control components.
I have a windows forms project. It has a main form derived from System::Windows::Forms::Form
I have a project which has shared functionality between three other projects and have
I have a project directory which has an .acignore file containing: out/* The project
I have an ASP.NET project which has already some custom fields in it's web.config
I have to test some things on a project which has been developed by
I have a project which has just assimilated several apps from other projects of
Hi I have an application which has a main project set to ver 3.5
I have a project which has a set of binary dependencies (assembly dlls for

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.