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
- :
- OnUpdateUIBefore on installscript msi
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
‎Jun 21, 2009
03:54 AM
OnUpdateUIBefore on installscript msi
I want to create an installscript msi project but use scripts that I have from installscript projects.
but I get error like OnUpdateUIBefore functions has no prototype
How can I solve this issue?
but I get error like OnUpdateUIBefore functions has no prototype
How can I solve this issue?
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 22, 2009
06:16 AM
You need to declare your function
just add the following line, either at the top of your implementation (.RUL) file, or in the corresponding header (.H) file.
When you work in an Installscript project, this function is already pre-declared. But that's not the case in an MSI project.
Regards
just add the following line, either at the top of your implementation (.RUL) file, or in the corresponding header (.H) file.
prototype OnUpdateUIBefore();
When you work in an Installscript project, this function is already pre-declared. But that's not the case in an MSI project.
Regards
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 22, 2009
05:17 PM
For a minor upgrade in an InstallScript MSI project, perhaps see if OnResumeUIBefore does what you want.