messagebox - How to display message box when starting up an Inno Setup installer -
how display message box information, when starting installer made in inno setup?
like setup of reloaded games does:
call msgbox
function initializesetup
event function:
function initializesetup(): boolean; begin msgbox('some message.', mbinformation, mb_ok); result := true; end;
Comments
Post a Comment