Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果用户单击“取消”,我希望安装程序停止并退出,而不询问我是否要退出。
这可以以某种方式完成吗?任何帮助将不胜感激。
这很容易。只需添加
[Code] procedure CancelButtonClick(CurPageID: Integer; var Cancel, Confirm: Boolean); begin Cancel := true; Confirm := false; end;
到您的 ISS 脚本。