Hi,
i want to use the SplashScreen as a AboutBox and like to Close it by clicking the SplashScreen.
How can i do this? I start the SplashScreen with the Show-Method, so i tried the Hide-Method to close it, but it doesn`t work all the time:
procedure TForm1.aSplashScreenClick(Sender: TObjekt);
begin
with aSplashScreen do
begin
Begin Update;
Hide;
EndUpdate;
end;
end;
Is there a way to get a Close-Method for the SplashScreen?