InstallShield - 如何在安装对话框中显示产品代码
这可能真的很明显,但对于我来说,我无法弄清楚如何做到这一点。
我在 InstallShield 2011 中创建了一个基本 MSI 安装包。我无法弄清楚如何获取在“安装设计器”的“一般信息”页面上设置的“产品版本”字段以显示在设置期间的对话框。
我可以看到显示了“产品名称”属性,但没有显示“产品版本”
如何在安装过程中向用户显示“产品版本”?
谢谢!
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!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
在其属性窗格中在文本中写入以下内容字段:
[ProductVersion]
这是格式化类型。请注意,并非所有控件都支持其文本中的格式化值。
Try this:
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.