devxlogo

Manually coerce to Long all Integer expressions that might overflow

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.

See also  How Seasoned Architects Evaluate New Tech

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.