Archive: InstallOptions: how can I hide the [NEXT] button


InstallOptions: how can I hide the [NEXT] button
Using InstallOptions based custom pages, I create application startup scripts similar to NSIS.EXE (with options to install the application, view the README file, view the user manual, etc.)

As eveything is managed thru links, how can I hide the [NEXT] button ?


dvanesse, if you are using custom pages, add the following 2 lines to the top of your page's create function:


GetDlgItem $0 $HWNDPARENT 1
ShowWindow $0 0

Many thanks, I will try.