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: How to override OnUpdateUIAfter()
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 19, 2008
01:43 PM
How to override OnUpdateUIAfter()
My OnShowUI() function is calling OnUpdateUIAfter(). I'd like to change the default text shown below "Update Complete". From some googling I believe the contant IDS_IFX_SDFINISH_UPDATE_MSG1 is being used which I want to replace with custom text.
How can I override the function if I don't know what the original function contains? Is there a way to reveal the source for inbuilt functions?
Many thanks.
How can I override the function if I don't know what the original function contains? Is there a way to reveal the source for inbuilt functions?
Many thanks.
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 19, 2008
01:52 PM
You can paste in the default implementation of any event handler function by opening the InstallScript view, selecting the event category you want ("After Move Data" in this case) from the left-hand list, and then selecting the event handler function ("OnUpdateUIAfter") from the right-hand list.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 19, 2008
02:36 PM
That worked! Thanks.