我想使用ShellExec网站:
ShellExec('open', 'http://www.domain.com/test.htm' + ErrorCode, '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode);
ErrorCode是int,编译器说类型不匹配,我该如何解决这个问题?
答案 0 :(得分:2)
InnoSetup中没有Int到String的隐式转换。您需要在代码中转换数据类型,如:
ShellExec('open', 'http://www.domain.com/test.htm' + IntToStr(ErrorCode), '', '', SW_SHOWNORMAL, ewNoWait, ErrorCode);