Reputation: 305
I want to create a page and ask user for DB information like username, pwd, instance name during uninstallation and use same info for making some queries. The only issue I am facing here is putting the custom page.IF I just declare the page like
UninstPage Custom un.dbPageEnter un.dbPageLeave
then it comes at the end but with disabled Next button(I can't click on next and run the queries now) So, below are the steps I am able to do now
Questions:
Upvotes: 0
Views: 163
Reputation: 101569
Pages are displayed in the order they appear in your script.
UninstPage Custom un.dbPageEnter un.dbPageLeave
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
Upvotes: 1