program SplashApp;
uses
SysUtils, Vcl.Forms,
uSplashMain in 'uSplashMain.pas' {Form1},
uSplashForm in 'uSplashForm.pas' {Form5};
{$R *.res}
begin
Application.Initialize;
Form5 := TForm5.Create(nil);
try
Application.MainFormOnTaskbar := True;
Form5.Show;
Form5.Update;
Application.CreateForm(TForm1, Form1);
Sleep(3000);
finally
Form5.Free;
end;
Application.Run;
end.
Copyright © 2014 DelphiW.com 开发 源码 文档 技巧 All Rights Reserved
晋ICP备14006235号-8 晋公网安备 14108102000087号
执行时间: 0.044412136077881 seconds