Board index » off-topic » Alpha Blended Splash Screen

Alpha Blended Splash Screen


2005-11-05 11:30:45 AM
off-topic3
Check the Delphi.Graphics group for more info.
 
 

Re:Alpha Blended Splash Screen

nice effect. however, in my program i called showsplash at start of main
form create and called hidesplash when evertything had stabilised.
calling hidespalsh caused the application to disappear into the woods
behind eg delphi. i cured it with the following change
procedure HideSplashScreen;
begin
{Just freeing the splash screen already hides it. You could however
call Hide}
if Assigned(FSplashScreen) then
begin
Application.BringToFront; // this is the fix
Application.ProcessMessages;
FreeAndNil(FSplashScreen);
end;
end;
regards XXXX@XXXXX.COM