BUG: "Missing )" Error Message Produced by Valid ExpressionLast reviewed: June 27, 1995Article ID: Q131218 |
The information in this article applies to:
SYMPTOMSA "Missing )" error message is produced when a valid expression is used with an ON routine such as ON ERROR or ON KEY LABEL.
CAUSEThe algorithm that parses expressions used with an ON routine cannot parse expressions that exceed 255 characters in length.
RESOLUTIONRearrange the code so that a short expression is placed after the ON routine. For example, instead of this:
ON ERROR <FoxPro Code Here>restructure the statement so a function that contains the code is called:
ON ERROR =myfunction() FUNCTION myfunction <FoxPro Code Here> RETURN .T.See the "Steps to Resolve Problem" section in this article for an example.
STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to Reproduce Problem
"Missing )" Steps to Resolve Problem
|
Additional reference words: FoxWin 2.60a buglist2.60a
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |