関数に指定された一つまたは複数の変数のデータ型が誤っています。
DEFINE
{
const string ExeVersion = "7.1";
const string FileVersion = "7.1";
string stMsgText;
}
MAIN
{
if (ExeVersion == FileVersion )
if (AIT_FileExists("#setup.exe") == 0)
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
AIT_LogMessage(stMsgText);
AIT_Sleep(3); // integer値が「AIT_Sleep」に指定されています
endif;
endif;
}
DEFINE
{
const string ExeVersion = "7.1";
const string FileVersion = "7.1";
string stMsgText;
}
MAIN
{
if (ExeVersion == Version)
if (AIT_FileExists("#setup.exe") == 0)
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
AIT_LogMessage(stMsgText);
AIT_Sleep(3.1); // integer値をfloat値に変更しました
endif;
endif;
}