TLama

Untitled

Mar 11th, 2013
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.26 KB | None | 0 0
  1. function IsInstall2013: Boolean;
  2. var
  3.   Success: Boolean;
  4.   OfficeVer: Cardinal;
  5. begin
  6.   Success := RegQueryDWordValue(HKEY_CLASSES_ROOT, 'Word.Application\CurVer',
  7.     'Word.Application.15', OfficeVer);
  8.   Result := Success and (OfficeVer = 123456789);
  9. end;
Advertisement
Add Comment
Please, Sign In to add comment