Re: Keeping invisible forms from showing at start-up



Couldn't you do something like ...

SplashForm := TSplashForm.Create(Application);
SplashForm.Show;
OtherForm1 := TOtherForm1.Create(Application);
OtherForm2 := TOtherForm2.Create(Application);
Application.CreateForm(TForm1, Form1); // main form
SplashForm.Hide;
SplashForm.Free;
Application.Run;

Alan Lloyd

.



Relevant Pages

  • Access a form, using a string literal?
    ... So we're able to access all the properties and methods of Form1 and not ... just the methods and properties of the base class "Form". ... Gerrit ... Prev by Date: ...
    (microsoft.public.dotnet.languages.csharp)
  • VB 2005 Express: Replacing parameters in a text file with TextBox values
    ... my Windows Form called Form1. ... @@ComboBox1@@ with value of ComboBox1, ... I'd appreciate any pointers. ... Prev by Date: ...
    (microsoft.public.dotnet.languages.vb)
  • Direct Sound
    ... / teaching Direct Sound (mono) with Delphi. ... Alan Lloyd ... Prev by Date: ...
    (comp.lang.pascal.delphi.misc)
  • Re: Communicating Between Two Forms
    ... cannot find Form1 is (it is in your Main.h and you need to import it in ... Regards, ... Philip Hristov. ... Prev by Date: ...
    (microsoft.public.dotnet.general)
  • Re: latency
    ... This was done when the program starts - static DLL loading is standard ... Delphi initialization. ... Alan Lloyd ... Prev by Date: ...
    (microsoft.public.win32.programmer.mmedia)