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...")
 
mNo edit summary
Line 1: Line 1:
== complier error: type mismatch ==
== complier error: type mismatch ==


Line 9: Line 8:
  StatusCode := 123;
  StatusCode := 123;
  MsgBox( ' StatusCode - ' + IntToStr(StatusCode)  , mbInformation, MB_OK)
  MsgBox( ' StatusCode - ' + IntToStr(StatusCode)  , mbInformation, MB_OK)
version: 5.4.2

Revision as of 18:56, 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)


version: 5.4.2