KnowledgeBase Archive

An Archive of Early Microsoft KnowledgeBase Articles

View on GitHub

Q205053: PRB: "Overflow" with Integer Division and MOD Operator

Article: Q205053
Product(s): Microsoft Visual Basic for Windows
Version(s): WINDOWS:4.0,5.0,6.0
Operating System(s): 
Keyword(s): kberrmsg kbVBp kbVBp400 kbVBp500 kbVBp600 kbGrpDSVB
Last Modified: 11-JAN-2001

-------------------------------------------------------------------------------
The information in this article applies to:

- Microsoft Visual Basic Learning Edition for Windows, versions 5.0, 6.0 
- Microsoft Visual Basic Professional Edition for Windows, versions 5.0, 6.0 
- Microsoft Visual Basic Enterprise Edition for Windows, versions 5.0, 6.0 
- Microsoft Visual Basic Standard Edition, 32-bit, for Windows, version 4.0 
- Microsoft Visual Basic Professional Edition, 16-bit, for Windows, version 4.0 
- Microsoft Visual Basic Professional Edition, 32-bit, for Windows, version 4.0 
- Microsoft Visual Basic Enterprise Edition, 16-bit, for Windows, version 4.0 
- Microsoft Visual Basic Enterprise Edition, 32-bit, for Windows, version 4.0 
-------------------------------------------------------------------------------

SYMPTOMS
========

When using a number larger than 2,147,483,647 (or smaller than -2,147,483,648)
with the Mod operator or the integer division operator (\), you receive the
following error message:

  Run Time Error '6':
  Overflow

CAUSE
=====

The Visual Basic Help topic for the Mod operator and the integer division
operator (\) explains that if floating point numbers are used in the expression,
they are converted to Longs first. Thus, if the floating point number is greater
than the maximum value of a Long (2,147,483,647), or less than the minimum value
for a long (-2,147,483,648), an overflow error will occur.

RESOLUTION
==========

The following code demonstrates how to perform integer division and modulo
arithmetic when the size of an operand is sufficiently large to cause overflow:

  Dim dblX as Double
  Dim dblY as Double
  dblX = 2147483648                ' numerator
  dblY = 123                       ' denominator

  ' round off the numerator and denominator (ensure number is .0)
  dblX = INT(dblX + .5)         
  dblY = INT(dblY + .5)      

  ' Emulate integer division
  MsgBox FIX(dblX / dblY)             
  ' Emulate modulo arithmetic
  MsgBox dblX - ( dblY * FIX(dblX / dblY) )

STATUS
======

This behavior is by design.

Additional query words:

======================================================================
Keywords          : kberrmsg kbVBp kbVBp400 kbVBp500 kbVBp600 kbGrpDSVB 
Technology        : kbVBSearch kbAudDeveloper kbZNotKeyword6 kbZNotKeyword2 kbVB500Search kbVB600Search kbVBA500 kbVBA600 kbVB500 kbVB600 kbVB400Search kbVB400 kbVB16bitSearch
Version           : WINDOWS:4.0,5.0,6.0
Issue type        : kbprb

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

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.

Copyright Microsoft Corporation 1986-2002.