This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Automatic Version Numbering
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 08, 2018
04:34 AM
Automatic Version Numbering
Is there a way to automatically get the version number of the product within InstallShield 2018 Express?
I know you can set the version number manually but is there a way for it to automatically detect this?
I know you can set the version number manually but is there a way for it to automatically detect this?
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jun 14, 2018
09:54 AM
Hi Oliver78,
Do you mean via automation interface ?
If so, you can use sample snippet like this:
var ISObject = new ISWiAuto22.ISWiProject();
ISObject.OpenProject(@strPath);
var version = ISObject.ProductVersion;
Thanks,
Jenifer
Do you mean via automation interface ?
If so, you can use sample snippet like this:
var ISObject = new ISWiAuto22.ISWiProject();
ISObject.OpenProject(@strPath);
var version = ISObject.ProductVersion;
Thanks,
Jenifer