本文整理自网络,侵删。
program dxG10000;
uses
Forms,
main in 'main.pas' {fmMain},
splash in 'splash.pas' {fmSplash},
dxGridMenus in '../DemoUtils/dxGridMenus.pas';
{$R *.RES}
begin
fmSplash := TfmSplash.Create(nil); //欢迎窗口
try
fmSplash.Show;
fmSplash.Update;
Application.CreateForm(TfmMain, fmMain);
finally
fmSplash.Free;
fmSplash := nil;
end;
Application.Run;
end.
相关阅读 >>
Delphi 关于选择文件路径 selectdirectory 弹出窗口居中的问题
Delphixe4 版本中,已针对移动平台 引入了 arc 模型
更多相关阅读请进入《Delphi》频道 >>