Re: Keeping invisible forms from showing at start-up
- From: "alanglloyd@xxxxxxx" <alanglloyd@xxxxxxx>
- Date: 30 Jan 2006 13:20:53 -0800
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
.
- References:
- Keeping invisible forms from showing at start-up
- From: Paul E. Schoen
- Re: Keeping invisible forms from showing at start-up
- From: Rob Kennedy
- Re: Keeping invisible forms from showing at start-up
- From: Paul E. Schoen
- Keeping invisible forms from showing at start-up
- Prev by Date: Re: Keeping invisible forms from showing at start-up
- Next by Date: FS q command
- Previous by thread: Re: Keeping invisible forms from showing at start-up
- Next by thread: type conversion problem
- Index(es):
Relevant Pages
|