Inno setup

From LemonWiki共筆
Revision as of 18:56, 19 October 2011 by Planetoid (talk | contribs)
Jump to navigation Jump to search

complier error: type mismatch

before:

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

after:

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


version: 5.4.2