If you need to retrieve at runtime your application’s version number, you’re targeting Windows, and you don’t mind just having the major and minor numbers, then SysUtils has a handy GetFileVersion function for the task: function GetAppVersionStr: string; var Rec: LongRec; begin ...
More...