Inno setup

From LemonWiki共筆
Revision as of 18:55, 19 October 2011 by Planetoid (talk | contribs) (Created page with " == complier error: type mismatch == before: StatusCode := 123; MsgBox( StatusCode , mbInformation, MB_OK); after: StatusCode := 123; MsgBox( ' StatusCode - ' + IntToStr(S...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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)