PRB: WPARENT() Gives Error in 3.0 Different from Error in 2.xLast reviewed: April 30, 1996Article ID: Q130277 |
The information in this article applies to:
SYMPTOMSPassing too many parameters to the function WPARENT() as in:
? WPARENT("<undefined window name>",<second parameter>)results in different error messages in versions 2.x and 3.0. Error message # 1230 is returned in Visual FoxPro 3.0 as:
Too many arguments.whereas error message # 214 is returned in previous versions as:
Window <undefined window name> has not been defined. STATUSThis behavior is by design.
MORE INFORMATIONVisual FoxPro checks the number of arguments in the function before checking for the existance of the window in question. FoxPro 2.x checked to see if the window existed before it checked to see if the function had too many arguments. FoxPro 2.x ignored a second argument.
Steps to Reproduce ProblemIssue the command:
? WPARENT("no_window",10)where the window "no_window" has not been defined. Notice different error messages are returned in 2.x and 3.0.
|
Additional reference words: 3.00 VFoxWin
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |