LeCroy Corporation
Verification Script Engine Reference Manual
Page 99 of 107
21.4 SetUserDlgLimit()
This function sets the current limit of user dialogs allowed in the verification script. If the script reaches
this limit, no user dialogs are shown and the script does not stop. By default, this limit is set to 20.
Format:
SetUserDlgLimit()
Example:
…
result = MsgBox(Format("UserDlgLimit = %d", GetUserDlgLimit()),
_MB_OKCANCEL | _MB_EXCLAMATION, "Some Title !!!");
SetUserDlgLimit(2); # Set the limit to 2.
…