TLama

Untitled

Apr 14th, 2013
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.19 KB | None | 0 0
  1. uses
  2.   ShellAPI;
  3.  
  4. function InstallScreenSaver(const AFileName: string): Boolean;
  5. begin
  6.   Result := ShellExecute(0, 'install', PChar(AFileName), nil, nil,
  7.     SW_SHOWNORMAL) > 32;
  8. end;
Advertisement
Add Comment
Please, Sign In to add comment