Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Disable screen saver running
Use SystemParametersInfo with SPI_SETSCREENSAVEACTIVE parameter.
procedure TForm1.Button1Click(Sender: TObject);
begin
SystemParametersInfo(SPI_SETSCREENSAVEACTIVE, 0, nil, 0);
end;
-
More for developers