Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
Delphi 10 Seattle Enterprise
|
AW: Splash Screen Anzeigedauer
30. Mär 2016, 13:44
Um den Status der STRG-Taste beim Anwendungsstart zu prüfen in der dpr:
Delphi-Quellcode:
uses
...
Winapi.Windows,
...;
var
StrgPressed:Boolean;
begin
StrgPressed := GetKeyState( VK_CONTROL ) < 0;
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9 dc 90 9d f0 e9 de 13 da 60)
|