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
Post a Comment