Archive: Adding a next to MUI_COMPONENTSPAGE


Adding a next to MUI_COMPONENTSPAGE
I'm creating an installer which puts files into a fixed directory. But I want the user to see where the files are being added. So I'm using the following fixed menu's:

!define MUI_WELCOMEPAGE
!define MUI_COMPONENTSPAGE
!define MUI_COMPONENTSPAGE_SMALLDESC

!define MUI_FINISHPAGE
!define MUI_FINISHPAGE_RUN ""

But when the MUI_COMPONENTSPAGE is completed it goes onto the FINISHEDPAGE, would like the user to to see this, for exmaple, user must use next to goto the finished page. The program I'm installing is small, so the MUI_COMPONENTSPAGE, just flashes.

I'm very new to NIS, is there a simple way of adding a next? or user button for user input to go to the finished page?


I didn't understand much... Maybe you mean MUI_PAGE_INSTFILES page but...

1) You want do add a custom page between the COMPONENTS and FINISH pages? 2) Want to stay in the in the COMPONENTS page after clicking "Install" button, and when end, show the "Next >" button? 3) Or want to show a page with informations about files being installed and, when finishes, stop, to user look and click "Next >" to be in the FINISH page?

Choose your option! :D


Yes, sorry for the misunderstanding, your are correct, I really would like, to have the user be able to see the MUI_PAGE_INSTFILES page.

The MUI_PAGE_INSTFILES page goes by really fast, due to the small number of isntall files. I would like for the page to have user input ie the next> button on the page. Then the user can see what files were installed and where.

Is this a little clearer?


Yes, option 3) Or want to show a page with informations about files being installed and, when finishes, stop, to user look and click "Next >" to be in the FINISH page?

Yes, this is what I'm looking for....


If using latest CVS version define MUI_FINISHPAGE_NOAUTOCLOSE, if not, search the MUI readme for auto close to find out what to define to disable it. If auto close is off the page you want to show will stay until the user clicks Next.