tags:

views:

26

answers:

1

Hello I am running an vb application on windows 2003 server ,when i am running it is giving ;overflow6 error? Can any one tell me why is so?

+1  A: 
  1. You are making a division and both num and denum are 0
  2. You try to assign a bigger type to a smaller one (like Byte b = a Long value)
  3. You multiply numbers and the result gets too big.

Check for divisions and if your data types are big enough to hold result of operations

jdehaan