Dec 01, 2010
10:37 AM
I would also like help with this. I can get the user's selection from that Dialog which is great, but I don't understand what happens after that. I need to adjust the root location of the registry (LOCAL_MACHINE vs. CURRENT_USER) and the location of the files (ALLUSERsPROFILE or USERPROFILE) based on the selection. Is there an example of custom actions that could be used for this? Thanks.
... View more
Dec 01, 2010
10:13 AM
I wasn't able to change the title or graphic in the footer, but I was able to replace the sidebar graphic with one that included our product and company logo. It turns out that InstallShield has a feature to do this. It's outlined in their tip paper by Robert Dickau (starting on page 4): http://www.flexerasoftware.com/webdocuments/PDF/DialogBitmaps.pdf I was able to create a nice graphic that is added to the setup files, and referenced through this: function OnBegin( ) begin // change the interior-dialog banner DialogSetInfo(DLG_INFO_ALTIMAGE, SUPPORTDIR ^ "alt.bmp", TRUE); end; Using the Blue skin, the graphic is sized for 220 x 395 pixels, and has a background color that matches the skin. The RGB color code is 61 102 171 The result is a UI that conveys our image more professionally. Hope this helps!
... View more
Nov 26, 2010
06:39 PM
The hourglass is fine during the install but I can't seem to activate it during an uninstall. The screen with the progress meter just sits there for a while before starting and it looks like it's frozen or crashed.
... View more
Nov 24, 2010
08:29 AM
Everything seems to be working well with the setup program I've created with InstallShield. However, after installation, my executable (*.EXE file) automatically gets added to the main Windows Start menu. Not just under the shortcut I've specified, but on the main list when the Windows button is pressed. How do I prevent that? Thanks.
... View more
Labels
- Labels:
-
InstallShield 2010
Nov 09, 2010
07:05 AM
That does the trick but I also had to expliciitly invoke the Finish form or the final screen doesn't appear: function OnFirstUIAfter() BOOL bOpt1, bOpt2; NUMBER nResult; begin Disable(HOURGLASS); nResult = SdFinish ("", "", "", "", "", bOpt1, bOpt2); end; Thanks for the help!
... View more
Nov 09, 2010
04:21 AM
When the Setup Status form appears (it shows the progress bar), the hourglass is not enabled. I'd like to have the hourglass on when that screen appears and off when the form closes. This is particularly important since it takes quite a while after the status form appears (with nothing on the progress meter) before anything happens. The first time I ran it, I thought the program was hung and then it started up. I can't figure out which form the status form is (it doesn't appear on the list of dialogs) to enable/disable the hourglass. I thought I had this working by enabling the hourglass after invoking the SdStartCopy command. But then I couldn't figure out where to disable it. The hourglass remained when the finish dialog appeared. I tried to disable it before calling the SdFinish command, but that didn't seem to work. Thanks for your help.
... View more
Labels
- Labels:
-
InstallShield 2010
Nov 09, 2010
02:38 AM
This is what seems to work for launching our README.HTM file after the installation program completes successfully: function OnEnd() string strReadme; number nResult; begin strReadme = INSTALLDIR + "readme.htm"; LongPathToQuote(strReadme,TRUE); nResult = LaunchApplication(strReadme, "", "", 0, 0, LAAW_OPTION_USE_SHELLEXECUTE); end;
... View more
Nov 08, 2010
04:38 PM
It would be helpful if you could provide the exact line of code to do this. Do I still have to provide a program name or do I simply pass the htm file name? For instance, this doesn't work since it requires many other parameters: LaunchApplication(INSTALLDIR + "Readme.htm", LAAW_OPTION_USE_SHELLEXECUTE) What are the settings for the other parameters, or are they all "" and 0? Thanks.
... View more
Nov 07, 2010
04:36 PM
I know how to open a README.HTM file by explicitly launching IEXPLORER.EXE with LaunchApp. However, I'd like to just launch the HTM document and let Windows open the user's default browser. How do I do that? Thanks.
... View more
Labels
- Labels:
-
InstallShield 2010
Nov 04, 2010
11:25 PM
Thanks. Now that I have multiple releases in one product configuration, is there a way to copy all the releases of one product configuration to a new one or at least copy one release at a time? I see how to clone a release but can't figure out how to move it to another product configuration. I'd also be nice to have all the code signing information stored in one place rather than each release. I can see how that could be a pain to manage in the future.
... View more
Nov 04, 2010
05:32 PM
Thanks. That link didn't go to SetProperty, but I searched and found this page: http://helpnet.flexerasoftware.com/Robo/BIN/Robo.dll?mgr=agm&tpc=%2Frobo%2Fprojects%2Finstallshield17helplib%2FIHelpCustomActionsReleaseFlags.htm&wnd=InstallShieldLivingHelp%7CMain&agt=wsm&ctxid=showthread.php So is it doing something like this? MsiSetProperty(hMSI, "INSTALLDIR", svName); If so, what's hMSI and how/where do I set this up in the Install Script?
... View more
Nov 04, 2010
06:36 AM
Thanks. Actually, I found this thread that explained the way to configure this: http://community.flexerasoftware.com/showthread.php?t=179463 It's working great, so thanks for your guidance. Now, I've run into a new issue. Can I change the INSTALLDIR default folder based on a release flag?
... View more
Nov 03, 2010
04:46 PM
I'm sorry to be so dense at trying to understand this but for some reason, I'm still having trouble and don't understand the difference or how they are invoked. Given that I have release flags, how do I use those in combination with the features? Where/how in the properties or InstallScript do I reference the features to specify which ones go with which flags?
... View more
Nov 02, 2010
04:55 PM
Thanks. I think I'm making progress. I created two features under Organization. I set their levels to 1 and 2, and assigned some extra files to the second one. The help system says "You can change the package’s INSTALLLEVEL property in the Property Manager". I can't figure out where I do that. Each of the Features has a Release Flags property as well. Am I supposed to set something in that corresponding to the Release Flags in the Release's Build tab? I guess I'm getting confused between the INSTALLLEVEL and Release Flags.
... View more
Nov 02, 2010
08:57 AM
What do you mean by setting them on my features?
... View more
- « Previous
- Next »
Latest posts by DataAnalyzer
Subject | Views | Posted |
---|---|---|
200 | Sep 30, 2022 12:50 PM | |
218 | Jun 16, 2022 03:09 PM | |
351 | Jun 15, 2022 04:28 PM | |
263 | Apr 15, 2022 01:28 PM | |
289 | Mar 25, 2021 04:30 PM | |
295 | Mar 11, 2021 03:59 PM | |
3086 | Sep 27, 2018 12:17 AM | |
3086 | Sep 26, 2018 09:38 AM | |
3086 | Sep 25, 2018 01:05 PM | |
4254 | Sep 24, 2018 07:00 PM |
Activity Feed
- Posted Setting Always Overwrite for our files in INSTALLDIR on InstallShield Forum. Sep 30, 2022 12:50 PM
- Posted Re: Registry Branch Defined in Code on InstallShield Forum. Jun 16, 2022 03:09 PM
- Posted Re: Catch upgrade in installscript? on InstallShield Forum. Jun 15, 2022 04:28 PM
- Kudoed Re: Catch upgrade in installscript? for epotter. Jun 15, 2022 04:26 PM
- Posted Re: SignTool Error on InstallShield Forum. Apr 15, 2022 01:28 PM
- Posted For Upgrade, Need to Verify the User is Still Valid; Can't Debug on InstallShield Forum. Mar 25, 2021 04:30 PM
- Tagged For Upgrade, Need to Verify the User is Still Valid; Can't Debug on InstallShield Forum. Mar 25, 2021 04:30 PM
- Tagged For Upgrade, Need to Verify the User is Still Valid; Can't Debug on InstallShield Forum. Mar 25, 2021 04:30 PM
- Posted How can I require Administrator and still install for the user? on InstallShield Forum. Mar 11, 2021 03:59 PM
- Tagged How can I require Administrator and still install for the user? on InstallShield Forum. Mar 11, 2021 03:59 PM
- Tagged How can I require Administrator and still install for the user? on InstallShield Forum. Mar 11, 2021 03:59 PM
- Posted Re: Upgrading a Product with a New Product Name Fails on InstallShield Forum. Sep 27, 2018 12:17 AM
- Posted Re: Upgrading a Product with a New Product Name Fails on InstallShield Forum. Sep 26, 2018 09:38 AM
- Posted Re: Upgrading a Product with a New Product Name Fails on InstallShield Forum. Sep 25, 2018 01:05 PM
- Posted Re: Upgrading a Product with a New Product Name Fails on InstallShield Forum. Sep 24, 2018 07:00 PM
- Posted Re: Upgrading a Product with a New Product Name Fails on InstallShield Forum. Sep 24, 2018 03:07 PM
- Posted Re: Upgrading a Product with a New Product Name Fails on InstallShield Forum. Sep 24, 2018 01:36 PM
- Posted Re: Upgrading a Product with a New Product Name Fails on InstallShield Forum. Sep 22, 2018 05:09 PM
- Posted Upgrading a Product with a New Product Name Fails on InstallShield Forum. Sep 21, 2018 02:09 PM
- Posted Re: OnFirstUIAfter Program Launch Triggers ActiveX component can't create object (429) on InstallShield Forum. Sep 10, 2018 09:11 AM