program Project1;
uses
Forms,
windows,
Unit1 in 'Unit1.pas' ,
Unit2 in 'Unit2.pas' ,
Unit3 in 'Unit3.pas' ,
Unit4 in 'Unit4.pas' ;
CONST
Delay = 500;
MaxForms = 3;
{$R *.res}
begin
Application.Initialize;
Logo:= TLogo.Create(nil);
Logo.ProgressBar1.Max:= MaxForms;
Logo.Update;
Logo.ProgressBar1.StepIt; Sleep(Delay);
Application.CreateForm(TForm1, Form1);
Logo.ProgressBar1.StepIt; Sleep(Delay);
Application.CreateForm(TForm3, Form3);
Logo.ProgressBar1.StepIt; Sleep(Delay);
Application.CreateForm(TForm4, Form4);
Logo.ProgressBar1.StepIt; Sleep(Delay);
Logo.Free;
Application.Run;
end.