FIX: CALCULATE SUM() on Currency Field Gives Illegal Operation

Last reviewed: October 29, 1997
Article ID: Q161053
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 5.0

SYMPTOMS

Performing a comparison on a value created with the CALCULATE SUM() function causes and illegal operation error. In Windows 95, the error message states the following:

   This program performed an illegal operation and will be shut down.

After pressing the Details push button, the following message appears:

   VFP caused and invalid pagefault in module VFP .EXE at <register
   address>.

In Windows NT 4.0, the following error appears:

   An application error had occurred and an application error log is
   being generated.
   VFP.EXE
   Exception: access violation.

This behavior does not occur in Visual FoxPro 3.0a.

RESOLUTION

The use of the STR() and VAL() functions may prevent this error. The modified code example below shows the implementation of this resolution:

   SET TALK OFF
   CREATE TABLE junk (amt y)
   INSERT INTO junk (amt) VALUE(1.00)
   INSERT INTO junk (amt) VALUE(0.20)
   CALCULATE SUM(amt) TO mx
   mx=STR(mx)  && Converts the value from numeric to character type.
   mz = (VAL(mx) < 0)  && Converts mx back to numeric data type.
   ? mz

STATUS

Microsoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been fixed in Visual FoxPro 5.0a.

MORE INFORMATION

The following code illustrates this behavior. The use of other aggregate functions, such as AVG(), in the CALCULATE function produces similar results.

Steps to Reproduce Behavior

Enter the following code in a program and execute:

   SET TALK OFF
   CREATE TABLE junk (amt y)
   INSERT INTO junk (amt) VALUE(1.00)
   INSERT INTO junk (amt) VALUE(0.20)
   CALCULATE SUM(amt) TO mx
   mz = (mx < 0)
   ? mz

The error occurs during the comparison of the variable created with the CALCULATE SUM() function and another value. In the example above, initially declaring the variable mx numeric does not prevent the error.
Keywords          : buglist5.00 FxprgGeneral vfoxwin vfpfix5.0a kbprg kbbuglist kbfixlist
Version           : 5.0
Platform          : WINDOWS
Issue type        : kbbug
Solution Type     : kbfix


================================================================================


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: October 29, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.