View Full Version : Setting the property
jayaram
06-23-2004, 12:43 AM
Hello,
I am using Installshield X , I need to change the product name property from the install script...
Thanx
Jay
kflowers
06-23-2004, 10:14 AM
You can accomplish this for an IS X Universal project by applying a XSL style sheet to the .UIP project.
<xsl:template match="section[@name='Product']//product[@id='bean5']/displayName">
<displayName>InstallShield</displayName>
</xsl:template>
</xsl:stylesheet>
To learn more about this please go to the Following URL:
http://helpnet.installshield.com/Robo/BIN/Robo.dll?tpc=/robo/projects/isxuniversalhelplibrary/topics/using_xsl_stylesheets.htm
MarloV
06-23-2004, 03:39 PM
Also, please see the following topic on HelpNet for using XSL Stylesheets with Universal:
Using XSL Stylesheets (http://helpnet.installshield.com/Robo/BIN/Robo.dll?tpc=/robo/projects/isxuniversalhelplibrary/topics/using_xsl_stylesheets.htm)
Powered by vBulletin® Version 4.2.0 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.