I want to change the finish page.
I need to give a user an option to select two options.
I know how to make one:
!define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_TEXT "Start Something"
!define MUI_FINISHPAGE_RUN_FUNCTION "LaunchSomeFunction"
But how can I make two ?
Custom Page Question
4 posts
Instead of a Finish page, you could just use a custom / installoptions page. That gives you the liberty to set up as many options as you'd like.
You can use the show readme checkbox for that. Have it execute a function instead of opening a readme. In that function, use Exec to run your application.
Excelent idea.
Thanks.
Thanks.