This is something that expert VB developers know very well, yet every know and then an otherwise perfect VB app stops with a fatal overflow error because of Integer overflow. Consider the following code:
Dim LongVariable As LongLongVariable = 256 * 256
This raises the error “Runtime Error 6, Overflow”, even though the target variable can accomodate the result. The problem, in fact, is that when multiplying to Integer values VB assumes that the result is also an Integer. If you aren’t sure that this is correct, just force either operand to be a Long, as in:
Dim LongVariable As LongLongVariable = 256 * 256&
or:
Dim LongVariable As LongLongVariable = 256 * CLng(256)
Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.






















