NewKreation
17th March 2005 20:49 UTC
Keep Alive Uninstaller InstFiles Page
This is an awesome program and support forum!
When running my installer, the
!define MUI_FINISHPAGE_NOAUTOCLOSE
command allows me to view the files that were installed.
However, when running the uninstaller, the
!define MUI_UNFINISHPAGE_NOAUTOCLOSE
command WILL NOT allow me to view the files that were uninstalled.
Could someone look at my code and see where I've missed it here?
Thanks in Advance!
Updated: Deleted old attachment
kichik
17th March 2005 20:55 UTC
You inserted the define in a wrong place. It must be defined above all page macros.
Interface settings should be set before inserting page macros. Page interface settings apply to all pages of a certain type.
NewKreation
17th March 2005 21:02 UTC
Originally posted by kichik
You inserted the define in a wrong place. It must be defined above all page macros.
Thanks for the quick reply!
The unistall still flies through the page I would like it stop on though.
Updated: Deleted old attachment
kichik
17th March 2005 21:10 UTC
Remove `SetAutoClose true` from the uninstall section.
NewKreation
17th March 2005 23:40 UTC
Originally posted by kichik
Remove `SetAutoClose true` from the uninstall section.
That did it!
Thanks a million!