Thema: Delphi Animierte Splash Form

Einzelnen Beitrag anzeigen

Benutzerbild von Andy BitOff
Andy BitOff

Registriert seit: 11. Jun 2009
21 Beiträge
 
#16

Re: Animierte Splash Form

  Alt 12. Jun 2009, 19:36
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.
  Mit Zitat antworten Zitat