Главная страница
Top.Mail.Ru    Яндекс.Метрика
Текущий архив: 2002.09.05;
Скачать: CL | DM;

Вниз

Version Info   Найти похожие ветки 

 
den_dnepr ©   (2002-08-23 17:11) [0]

вопрос следующего содержания: хочу сделать форму "о программе" и чтоб при каждом билде в эту форму попадал номер версии проги (который установлен в project/options/version info) может кто подскажет как это сделать?


 
Skier ©   (2002-08-23 17:12) [1]

>den_dnepr
В RX Library есть класс по этому поводу.


 
Игорь Шевченко ©   (2002-08-23 17:14) [2]

procedure TfrmAbout.FormCreate(Sender: TObject);

procedure GetFileVersion(FileName: string; var Major1, Major2,
Minor1, Minor2: Integer);
{ Helper function to get the actual file version information }
var
Info: Pointer;
InfoSize: DWORD;
FileInfo: PVSFixedFileInfo;
FileInfoSize: DWORD;
Tmp: DWORD;
begin
// Get the size of the FileVersionInformatioin
InfoSize := GetFileVersionInfoSize(PChar(FileName), Tmp);
// If InfoSize = 0, then the file may not exist, or
// it may not have file version information in it.
if InfoSize = 0 then
raise Exception.Create("Can""t get file version information for "
+ FileName);
// Allocate memory for the file version information
GetMem(Info, InfoSize);
try
// Get the information
GetFileVersionInfo(PChar(FileName), 0, InfoSize, Info);
// Query the information for the version
VerQueryValue(Info, "\", Pointer(FileInfo), FileInfoSize);
// Now fill in the version information
Major1 := FileInfo.dwFileVersionMS shr 16;
Major2 := FileInfo.dwFileVersionMS and $FFFF;
Minor1 := FileInfo.dwFileVersionLS shr 16;
Minor2 := FileInfo.dwFileVersionLS and $FFFF;
finally
FreeMem(Info, FileInfoSize);
end;
end;

var
F : Pointer;
tmp : array[0..MAX_PATH] of char;
var
VersionMajor: Integer;
VersionMinor: Integer;
Release, BuildNumber: Integer;

begin
if FileExists(ParamStr(0)) then begin
// Get the file version
GetFileVersion(ParamStr(0), VersionMajor, VersionMinor, Release, BuildNumber);
cVersion.Caption := Format("Версия: %d.%d.%d", [VersionMajor, VersionMinor, Release]);
lbBuild.Caption := Format("(сборка %d)", [BuildNumber]);
end;
lbDBVer.Caption := FOptions.DBVersion;
end;




Страницы: 1 вся ветка

Текущий архив: 2002.09.05;
Скачать: CL | DM;

Наверх




Память: 0.47 MB
Время: 0.018 c
8-14171
BorisM
2002-04-27 00:08
2002.09.05
Как изменить степень сжатия JPG?


3-13920
Reticent
2002-08-14 12:40
2002.09.05
SQL to ORACLE


1-14111
Loker
2002-08-23 18:05
2002.09.05
Cтранности с ShellExecute


1-14040
Андрусь
2002-08-25 14:38
2002.09.05
Подскажите функцию сравнения двух указателей на real


1-13993
Mr.Kirya
2002-08-25 21:03
2002.09.05
Нужен компонент...