M3NTA7
M3NTA7

Reputation: 1347

InstallShield - How to display Product Code on Install Dialog

This is probably really obvious, but for the life of me I can't figure out how to do this.

I have a Basic MSI install package created in InstallShield 2011. I haven't been able to figure out how to get the 'Product Version' field that is set on the 'General Information' page of the 'Installation Designer' to show up on the dialog form during setup.

I can see that the 'Product Name' property is displayed, but not the 'Product Version'

How do I display the 'Product Version' to the user during install?

Thanks!

Upvotes: 3

Views: 2014

Answers (1)

Cosmin
Cosmin

Reputation: 21416

Try this:

  • go to Dialogs page and select the dialog you want
  • click "Edit dialog layout" link to modify the dialog
  • select the control which will use the Product Version
  • in its Properties pane write the following in Text field:

    [ProductVersion]

This is the formatted type. Please note that not all controls support formatted values in their text.

Upvotes: 5

Related Questions