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
- :
- Re: Custom action throughout the installation process
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
‎Sep 22, 2008
02:39 PM
Custom action throughout the installation process
Hi, I wrote an InstallScript function that displays a background screen. I would like to display that screen throughout the installation process. I've tried to put the function in various places in the custom actions sequence, but kept on getting errors. Would somebody please tell me how this is done? Really appreciate your help.
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 23, 2008
10:04 AM
I believe InstallScript custom actions need to be synchronous, so this might be difficult. What kind of project are you using (Basic MSI or InstallScript MSI)?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 23, 2008
02:28 PM
It is a web project.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 23, 2008
03:28 PM
I believe a Web project is just a Basic MSI project with some modifications such as an IISROOTFOLDER directory defined, in which case the restriction about synchronous InstallScript actions applies. (If you project were InstallScript MSI you could easily show a background, but it's almost certainly not worth converting the project for that.) The InstallShield help topic "Enable" mentions this about enabling backgrounds:
To enable window mode, you must call Enable with the BACKGROUND constant, and then again with DEFWINDOWMODE or FULLWINDOWMODE. These constants are not supported for use in Basic MSI setup projects.Unless you're showing the background window in some other way?