|
|
|
| dcVersionInfo component.
|
| property FileMinorVersion: LongInt; // Read only!
|
| FileMinorVersion represents the right-most 32 bits of the file version number.
|
|
|
| FileMinorVersion and FileMajorVersion are used together to build a 64-bit file version number. The 64-bit value is represented in Microsoft's file version format.
|
|
|
|
|
| Following code demonstrates how to convert FileMajorVersion value to the build and release numbers:
|
|
|
| with dcVersionInfo1 do
|
| Label1.Caption := IntToStr(HiWord(FileMinorVersion)) + '.' + IntToStr(LoWord(FileMinorVersion));
|
| FileMajorVersion, ProductMajorVersion, ProductMinorVersion, FileVersion, FileVersionFloat properties.
|