fakhruddin ma'ruf
fakhruddin ma'ruf

Reputation: 135

How to display message box when starting up an Inno Setup installer

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

Like this setup of Reloaded Games does:

enter image description here

Upvotes: 3

Views: 8088

Answers (1)

Martin Prikryl
Martin Prikryl

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

Related Questions