PRB: "Missing Operand" Using TIME() with WAIT WINDOW CommandLast reviewed: January 10, 1997Article ID: Q156240 |
The information in this article applies to:
SYMPTOMSIn Visual FoxPro, you can use the WAIT WINDOW command with any character expression to display a message in the upper right corner of the Visual FoxPro desktop. However, when you try to use the TIME() function with the WAIT WINDOW command, as in WAIT WINDOW TIME(), you receive the following error message:
Missing Operand CAUSEAlthough the TIME() function is returning a character string, the WAIT WINDOW command is interpreting the first four characters of the function (TIME) as an abbreviation for the TIMEOUT command. The TIMEOUT command is expecting a numeric value as its first clause, but instead it is being passed a value of "()." Since this is not a valid numeric value, the "Missing Operand" error occurs.
WORKAROUNDYou can use the following workaround:
WAIT WINDOW ""+TIME() && Includes the double quotation STATUSThis behavior is by design.
MORE INFORMATION
Steps to Reproduce BehaviorType the following in the Command window:
WAIT WINDOW Time() |
KBCategory: kbprg kbprb
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |