【问题标题】:How to display message box when starting up an Inno Setup installer启动 Inno Setup 安装程序时如何显示消息框
【发布时间】:2020-06-01 17:52:27
【问题描述】:

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

就像 Reloaded Games 的这种设置一样:

【问题讨论】:

    标签: inno-setup messagebox


    【解决方案1】:

    InitializeSetup event function 调用MsgBox function

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-06-27
      • 1970-01-01
      • 2013-07-29
      相关资源
      最近更新 更多