Microsoft KB Archive/42473

From BetaArchive Wiki
< Microsoft KB Archive
Revision as of 17:56, 18 July 2020 by 3155ffGd (talk | contribs) (importing KB archive)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Base


"Overflow" Error Might Be the Result of 0/0

Article ID: 42473

Article Last Modified on 8/16/2005



APPLIES TO

  • Microsoft QuickBasic 4.0
  • Microsoft QuickBASIC 4.0b
  • Microsoft QuickBasic 4.5 for MS-DOS
  • Microsoft BASIC Compiler 6.0
  • Microsoft BASIC Compiler 6.0b
  • Microsoft BASIC Professional Development System 7.0



This article was previously published under Q42473

SUMMARY

When the error "Overflow" is encountered in a Microsoft QuickBasic program, one possibility is to check for a zero divided by zero (0/0) condition.

This information applies to Microsoft QuickBasic Versions 4.00, 4.00b, and 4.50 for MS-DOS; to Microsoft Basic Compiler Versions 6.00 and 6.00b for MS-DOS and MS OS/2; and to Microsoft Basic PDS Version 7.00 for MS-DOS and MS OS/2.

MORE INFORMATION

Any numeric value divided by zero will produce the error "Division By Zero," but zero (0) being divided by zero produces a special floating- point exception. This error will cause the compiler to respond with an "Overflow" message.

Both of these errors are correct. The machine could respond by either a "Division By Zero" error or an "Overflow" error, depending on the following factors:

  1. Is the computer using a coprocessor?
  2. Is the coprocessor functioning correctly?
  3. What operating system are you using? (There was a problem with PC-DOS Version 3.20.)

When diagnosing an "Overflow" error, you may wish to first determine if the expression reduces to zero divided by zero. This might save you work trying to figure out why your expression is overflowing (or exceeding some numerical limit).

The following is a code example:

b# = 5
c# = 5
PRINT (b#-c#) / (b#-c#) ' This will result in an "Overflow" error
                


Additional query words: QuickBas BasicCom

Keywords: KB42473