GetCurrentRFInstance( )
ルールが現在実行されているフォーム インスタンス番号を取得します。
構文
GetCurrentRFInstance()
パラメータ
なし。
戻り値
ルールが実行されている繰返しフォーム インスタンス番号を表す番号。
例)
例3-57これが最初のインスタンスである場合、aeDateが入力されていない場合は問合せを実行します。
// If this is the first instance, raise a query if aeDate is not entered
return (GetCurrentRFInstance() == 1 && aeDate === null)?false:true;
親トピック: 繰返しフォーム関数