JP1/NETM/DM Automatic Installation Toolガイド (Windows(R)用)
gotoのラベル<ラベル名>は別のセクションにあります。
DEFINE
{
string stMsgText;
}
MAIN
{
goto ErrorLabel; // gotoステートメントがMAINセクションで定義されています
}
ERROR
{
ErrorLabel: // ラベルがERRORセクションで定義されています
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
}DEFINE
{
string stMsgText;
}
MAIN
{
goto ErrorLabel;
ErrorLabel: // ラベルがMAINセクション内で定義されています
stMsgText = "Setup(Japanese) " + InstallerName + " Not Found";
}All Rights Reserved. Copyright (C) 2013, 2015, Hitachi, Ltd.