Forumunuz.Com

Forumunuz.Com (https://www.forumunuz.com/)
-   Webmaster Forum (https://www.forumunuz.com/webmaster-forum/)
-   -   Delphi exe info (https://www.forumunuz.com/webmaster-forum/17393-delphi-exe-info.html)

Kaf Dağı 27 Mart 2015 15:18

Delphi exe info
 
Kod:

procedure TForm1.VersionInfo;
const
InfoStr : array [1..11] of String =
(
'CompanyName', 'FileDescription', 'FileVersion',
'InternalName', 'LegalCopyright', 'LegalTradeMarks',
'OriginalFilename', 'ProductName', 'ProductVersion',
'Comments', 'Author'
);
var
 pLen, j , pHandle : Cardinal;
 VersionBuf, VersionValue : PChar;
begin
 pHandle:=GetFileVersionInfoSize(PChar(Application.ExeName),pHandle);
 if pHandle > 0 then
 begin
  VersionBuf:=AllocMem(pHandle);
  GetFileVersionInfo(PChar(Application.ExeName),0,pHandle,VersionBuf);
  For J:=1 to 11 do begin
  If VerQueryValue(VersionBuf, PChar('StringFileInfo\041F04E6\'+InfoStr[j]),
  Pointer(VersionValue),pLen) Then
    ListBox.Items.Add(InfoStr[j] +' = '+VersionValue) ;
  end;
  FreeMem(VersionBuf,pHandle);
 end else ListBox.Items.Add('Versiyon bilgisi bulunamadı') ;
end;



Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 05:56.

Powered by vBulletin® Version 3.8.9   Copyright ©2000 - 2026, vBulletin Solutions, Inc.

Site kurucuları: Damla ve Meltem