If you use SplashCreator is saved in the file can be downloaded as shown in ASFDemo - Antonn (ASFDemoAntonn.dpr)
Delphi-Quellcode:
begin
ProgressTextItem := 0; //Index text to be changed
// Create from the saved file
AnimationSplashForm := TAnimationSplashForm.CreateFullFrom(ExtractFilePath(ParamStr(0)) + 'img\' + 'FullData.dat');
Application.Initialize;
Application.CreateForm(Tfrm_Main, frm_Main);
// Close and destroy
AnimationSplashForm.CloseSplash(30, True);
Application.Run;
end.