PRB: "Missing Operand" Using TIME() with WAIT WINDOW Command

Last reviewed: January 10, 1997
Article ID: Q156240
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b, 5.0

SYMPTOMS

In 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

CAUSE

Although 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.

WORKAROUND

You can use the following workaround:

   WAIT WINDOW ""+TIME()  && Includes the double quotation

STATUS

This behavior is by design.

MORE INFORMATION

Steps to Reproduce Behavior

Type the following in the Command window:

   WAIT WINDOW Time()


KBCategory: kbprg kbprb
KBSubcategory: FxprgGeneral
Additional reference words: 3.00 3.00b 5.00 kbdse VFoxWin



THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: January 10, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.