Inno setup: Difference between revisions

From LemonWiki共筆
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 1: Line 1:
== complier error: type mismatch ==
== complier error: type mismatch ==
solution:
* check the data type which used by the function ex: function [http://www.jrsoftware.org/ishelp/index.php?topic=isxfunc_msgbox MsgBox]


example:
before:
before:
  StatusCode := 123;
  StatusCode := 123;
Line 9: Line 12:
  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]
 
 
== Repair the garbled Chinese text in MsgBox (iss file was encoding to UTF-8) ==
solution:
* add Chinese text to [CustomMessages] in the iss file
<pre>
[CustomMessages]
ChineseText=中文測試文字
 
[code]
...
MsgBox( CustomMessage('ChineseText')  , mbInformation, MB_OK);
</pre>


Inno setup version: 5.4.2
Inno setup version: 5.4.2

Revision as of 15:03, 28 October 2011

complier error: type mismatch

solution:

  • check the data type which used by the function ex: function MsgBox

example: before:

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

after:

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


Repair the garbled Chinese text in MsgBox (iss file was encoding to UTF-8)

solution:

  • add Chinese text to [CustomMessages] in the iss file
[CustomMessages]
ChineseText=中文測試文字

[code]
...
MsgBox( CustomMessage('ChineseText')   , mbInformation, MB_OK);

Inno setup version: 5.4.2