Inno Setup Pascalスクリプトでブール値を文字列に変換する最も簡単な方法は何ですか?完全に暗黙のはずのこの些細な作業は、本格的な構築を必要とするようです。if
/else
Inno Setupでブール値を文字列に変換
function IsDowngradeUninstall: Boolean;
begin
Result := IsCommandLineParamSet('downgrade');
MsgBox('IsDowngradeUninstall = ' + Result, mbInformation, MB_OK);
end;
"タイプが一致しません"のため、これは機能しません。 IntToStr
はBoolean
も受け付けません。 BoolToStr
は存在しません。