PRB: Run-Time Overflow Error w/Byte-Type Counter in For Loop

Last reviewed: September 29, 1997
Article ID: Q129709
The information in this article applies to:
  • Standard, Professional, and Enterprise Editions of Microsoft Visual Basic, 16-bit and 32-bit, for Windows, version 4.0

SYMPTOMS

Using a byte variable as a counter in a For loop with a negative Step value causes an Overflow error at run-time.

CAUSE

In a For loop in Visual Basic for Windows, the Start, Limit and Step values are all coerced to the type of the For loop counter. Since the byte data type cannot be negative, it cannot have a negative step value.

RESOLUTION

This is a limitation of the implementation of the byte datatype and For loop. The solution is to never use byte type variables in For loops where the step is negative or a variable (since the variable may contain a negative number at some future time.)

STATUS

This behavior is by design.

MORE INFORMATION

Steps to Reproduce Behavior in Visual Basic Version 4.0

  1. Start a new project in Visual Basic. Form1 is created by default.

  2. Add the following code to the Command1_Click procedure:

          Dim ByteVar As Byte
    

          For ByteVar = 10 To 5 Step -1
    
             Debug.Print ByteVar
          Next
    


Additional query words: increment decrement counter
Keywords : PrgOther VB4ALL VB4WIN vbwin GnrlVb kbprg
Technology : kbvba
Version : WINDOWS:4.00
Platform : WINDOWS
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.

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