公告
财富商城
积分规则
提问
发文
2019-06-03 16:54发布
虎瘦雄心在
How to display a message box information, when starting up an installer made in Inno Setup?
Like this setup of Reloaded Games does:
Call the MsgBox function from the InitializeSetup event function:
MsgBox
InitializeSetup
function InitializeSetup(): Boolean; begin MsgBox('Some message.', mbInformation, MB_OK); Result := True; end;
最多设置5个标签!
Call the
MsgBox
function from theInitializeSetup
event function: