Inno setup: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 9: Line 9:
  MsgBox( ' StatusCode - ' + IntToStr(StatusCode)  , mbInformation, MB_OK)
  MsgBox( ' StatusCode - ' + IntToStr(StatusCode)  , mbInformation, MB_OK)


function [http://www.jrsoftware.org/ishelp/index.php?topic=isxfunc_msgbox MsgBox]


version: 5.4.2
Inno setup version: 5.4.2

Revision as of 16:47, 20 October 2011

complier error: type mismatch

before:

StatusCode := 123;
MsgBox( StatusCode  , mbInformation, MB_OK);

after:

StatusCode := 123;
MsgBox( ' StatusCode - ' + IntToStr(StatusCode)  , mbInformation, MB_OK)

function MsgBox

Inno setup version: 5.4.2