PRB: VAL() Does Not Return Error When Number Is Out of Range

Last reviewed: August 21, 1995
Article ID: Q135115
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0

SYMPTOMS

Assigning a variable a number that is out of the allowed range for double precision numbers doesn't generate an error.

STATUS

Microsoft is researching this behavior and will post new information here in the Microsoft Knowledge Base as it becomes available.

MORE INFORMATION

Code to Reproduce Behavior

Create and run this program:

CREATE TABLE test (numeric N(10,5), float F(10,5), ;

   double D, currency M, integer I)
APPEND BLANK nBig=VAL('1E+700') && largest double precision number has an exp of 308

? TYPE ('nBig')             &&  prints 'N'
? nBig                      &&  prints ********
? STR(nBig,203,7)           && prints 203 *'s
REPLACE numeric WITH nBig   && Numeric overflow. Data was lost
REPLACE float WITH nBig     && Numeric overflow. Data was lost
REPLACE double WITH nBig    && data type mismatch
REPLACE currency WITH nBig && data type mismatch
REPLACE integer WITH nBig   && Numeric overflow. Data was lost
? LOG(nBig)                 && prints 20 asterisks


Additional reference words: 3.00 VFoxWin
KBCategory: kbprg kbprb
KBSubcategory: FxprgGeneral


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: August 21, 1995
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.