标签: inno-setup messagebox
如何在启动Inno Setup中的安装程序时显示消息框信息?
像重装游戏的设置一样:
答案 0 :(得分:4)
从MsgBox function:
MsgBox
InitializeSetup
function InitializeSetup(): Boolean; begin MsgBox('Some message.', mbInformation, MB_OK); Result := True; end;