Help me understand something... I'm booted up with WIN98SE command prompt environment and running Quick Basic 7.1.
I try this code and get an Overflow error:
DIM IntegerNumber AS LONG
IntegerNumber = 128 * 256 '(The answer is 32,768. Should easily fit within LONG type)
LOCATE 1,1
PRINT IntegerNumber
END
If I change the multiplication to 127 *256, that works fine. If I replace the multiplication with IntegerNumber = 32768 (or larger) that's okay too.

Comments?
Thanks,
John