Atozed Forums

Full Version: ISAPI Version
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Property Product Version/Version Info from ISAPI DLL file/Delphi project (Project1.exe/Project1.dll) i would like to show in IWlabel?
Include this unit in your form (or unit):

IW.Common.AppInfo

Then use it like this:

IWLabel1.Caption := TIWAppInfo.GetAppVersion;

It will give you the version from the resource contained in the binary file of your application nicely formatted as

major.minor.release.build

as usual.
(07-15-2021, 03:08 AM)Alexandre Machado Wrote: [ -> ]Include this unit in your form (or unit):

IW.Common.AppInfo

Then use it like this:

IWLabel1.Caption := TIWAppInfo.GetAppVersion;

It will give you the version from the resource contained in the binary file of your application nicely formatted as

major.minor.release.build

as usual.

Easy! Thx