Atozed Forums
ISAPI Version - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software Products (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: ISAPI Version (/thread-2449.html)



ISAPI Version - matija - 07-09-2021

Property Product Version/Version Info from ISAPI DLL file/Delphi project (Project1.exe/Project1.dll) i would like to show in IWlabel?


RE: ISAPI Version - Alexandre Machado - 07-15-2021

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.


RE: ISAPI Version - matija - 07-16-2021

(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