Paul,

Just an observation.  If you force an exception for testing, you will 
find that VCL does not like this construct.  You will get 2 to 5 more 
exceptions of nasty sorts.  :-)

On 10 Jun 99 at 11:40, Marshall, Paul wrote:

> If you edit the project's DPR file thus, frmSplash will appear while the
> application is creating the other forms. You will need to Close and Free
> frmSplash (and set it to nil) at the end of your main form's FormShow
> method.
> 
>   Application.Initialize;
>   frmSplash := TfrmSplash.Create(Application);
>   try
>     frmSplash.Show;
>     frmSplash.Update;
> 
>     Application.CreateForm(...
>     Application.CreateForm(...
>     
>    Application.Run;
>   finally
>     if Assigned(frmSplash)
>       then frmSplash.Free;
>     { frmSplash will normally have been freed already }
>   end;
> 
> 
> > -----Original Message-----
> > From: Juan Manuel Gomez Ramos [SMTP:[EMAIL PROTECTED]]
> > Sent: Thursday, June 10, 1999 12:36 AM
> > To:   Multiple recipients of list delphi
> > Subject:  [DUG]:  Welcome image
> > 
> >   How does Delphi shows a welcome image/window while openning its main
> > window?
> > 
> >   Juan Manuel Gomez Ramos
> >   Computer Science student at Havana University
> >   email:<[EMAIL PROTECTED]>
> >         <[EMAIL PROTECTED]>
> >   eFax:(707) 313-0329
> >   internet:http://cronos.freeservers.com
> > 
> >   Hope is faith holding out its hand in the dark.
> > 
> > --------------------------------------------------------------------------
> > -
> >     New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
> >                   Website: http://www.delphi.org.nz
> ---------------------------------------------------------------------------
>     New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
>                   Website: http://www.delphi.org.nz
> 
Rohit

======================================================================
CFL - Computer Fanatics Ltd.  21 Barry's Point Road, AKL, New Zealand
PH    (649) 489-2280 
FX    (649) 489-2290
email [EMAIL PROTECTED]  or  [EMAIL PROTECTED]
======================================================================

---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz

Reply via email to