I'm writing an InnoSetup installer that includes these sections:
[Types]
Name: "ChooseVers"; Description: "Install support for WordPerfect versions:"; Flags: iscustom
[Components]
Name: "InstallForWP51"; Description: "Install support for WordPerfect 5.1"; Types: ChooseVers; Flags: checkablealone
Name: "InstallForWP62"; Description: "Install support for WordPerfect 6.2"; Types: ChooseVers; Flags: checkablealone
When the user runs the installer, it presents two checkboxes for the two items listed under Components, and the user can check either or both.
What I want to do is display a message if the user does not check either box, so that nothing gets installed. As it stands, the user simply sees a somewhat misleading message listing nothing under the the list of actions that will be performed, and the installer then closes. There's nothing seriously wrong with this, but it would be better to be more informative.
I'll be very grateful for any help with this.