Is there any way to disable <Next>
button in Inno Setup?
views:
510answers:
3Sorry about not being able to help in your particular problem directly. I would like to point out though that Inno Setup does not seem to be based on Windows Installer, which will probably make sure that your programs cannot pass Windows Logo requirements.
I would suggest that you take a look at WiX 3, which is an open source installer creator directly from Microsoft, with excellent support from the many people using it and that allows you to easily create regular Windows Installer packages. Disabling the Next button is easy using Wix.
This should work:
Wizardform.NextButton.Enabled := False;
For more information check out the InnoSetup newsgroups:
http://www.jrsoftware.org/newsgroups.php
I tried this code as well. it works on a normal(standard) wizard page but it did not work on my custom page.