Divide tasks into two pages

I have an Inno Setup installer with a task list that got pretty large, mainly due to several switch select lists. Is there any known way to split task list options into two pages instead of scrolling?

All the parameters used are basically the configuration settings of the installed program.

+4
source share
1 answer

Do you really have many (one) tasks? Inno cannot automatically paginate a page. If you want them to be separated, you will need to use a custom dialog and use the Check: options for conditional entries. An alternative is to use components that are a more explicit "list of things to install" rather than a "list of things to do."

+1
source

Source: https://habr.com/ru/post/1400670/


All Articles