Inno setup: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
(Created page with " == complier error: type mismatch == before: StatusCode := 123; MsgBox( StatusCode , mbInformation, MB_OK); after: StatusCode := 123; MsgBox( ' StatusCode - ' + IntToStr(S...")
(No difference)

Revision as of 18:55, 19 October 2011

complier error: type mismatch

before:

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

after:

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