Inno Setup: Exiting when clicking on Cancel without confirmation -


if user clicks on "cancel", want installer stop , exit, without asking want exit or not.

can done somehow? appreciated.

this easy. add

[code]  procedure cancelbuttonclick(curpageid: integer; var cancel, confirm: boolean); begin   cancel := true;   confirm := false; end; 

to iss script.


Comments

Popular posts from this blog

objective c - Change font of selected text in UITextView -

php - Accessing POST data in Facebook cavas app -

c# - Getting control value when switching a view as part of a multiview -