|
|
|
When working with integer expressions there is often the risk of raising the "Overflow" error. More specifically, there can be two occasions when this frequently occurs:
When you multiply or add Integer values and the result exceeds 32,767. When you create generic string routines that iterate on each character of the string, and you pass these routines a string that is longer than 32K characters. 32-bit versions of Visual Basic work with Long values at the same speed as with Integer variables, so there is no reason for not using Long values in integer calculations. There are two ways to force VB to use Longs instead of Integers inside math expressions: using a Long constant, or using the CLng() function to explicitly convert one of the operands to Long: |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|