启动Inno Setup安装程序时如何显示消息框 [英] How to display message box when starting up an Inno Setup installer

查看:645
本文介绍了启动Inno Setup安装程序时如何显示消息框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

启动Inno Setup中的安装程序时,如何显示消息框信息?

How to display a message box information, when starting up an installer made in Inno Setup?

就像重装游戏"的这种设置一样:

Like this setup of Reloaded Games does:

推荐答案

调用 InitializeSetup事件功能的MsgBox函数 :

function InitializeSetup(): Boolean;
begin
  MsgBox('Some message.', mbInformation, MB_OK);

  Result := True;
end;

这篇关于启动Inno Setup安装程序时如何显示消息框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆