|
-
Aug 3rd, 2000, 11:51 PM
#1
Thread Starter
Fanatic Member
What should I be looking for in my code when I get this message?
-
Aug 4th, 2000, 12:10 AM
#2
Whenever you get an error, it should highlight automatically.
-
Aug 4th, 2000, 12:13 AM
#3
Addicted Member
you will get that error if you try to put to many numbers in a integer or some other kind variable
-
Aug 4th, 2000, 01:33 AM
#4
Hyperactive Member
Also, look for a non-terminating loop. You generally don't get an overflow error unless you have mistyped a variable (integer instead of long or double) or have a loop that has put too many characters into a variable.
-
Aug 4th, 2000, 03:44 AM
#5
Addicted Member
I find this when I am using an Integer for a loop and the loop cannot exit, the counter can exceed the space available. Or perhaps the size you need exceeds it. Long size is -2,147,483,648 to 2,147,483,647, for example and Integer is only -32,768 to 32,767.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|