Reputation: 135
How to display a message box information, when starting up an installer made in Inno Setup?
Like this setup of Reloaded Games does:
Upvotes: 3
Views: 8088
Reputation: 202682
Call the MsgBox
function from the InitializeSetup
event function:
function InitializeSetup(): Boolean;
begin
MsgBox('Some message.', mbInformation, MB_OK);
Result := True;
end;
Upvotes: 7