Run Time Errors
Home Contents Search

Up

RTERROR.jpg (75335 bytes)      Run- Time Error Messages

Run-Time errors are often hard to see.  They appear a white text somewhere on your screen below wherever the cursor was positioned at the time of the error.  

They look a lot like I/O Error messages except that the first line says Run-time Error xx ,   PC=nnnn 

They are usually generated because of a math error, a memory error or because some part of the program that was expected to be there was not.

01 Floating point overflow.

Problem : The system tried to process a number that was to large.

Solution : None

Return to top of page

02 Division by zero attempted. 

Problem : The system attempted a division by zero.

Solution : Check you data for a inappropriate or incorrect number.

Return to top of page

03 Sqrt argument error.

Problem : The argument passed to the square root function was negative. 

Solution : Check you data for a inappropriate or incorrect number.

Return to top of page

04 Ln argument error.

Problem : The argument passed to the Ln function was zero or negative. 

Solution : Check you data for a inappropriate or incorrect number.

Return to top of page

10 String length error.

Problem : 1) A string was longer than 255 characters. 

Solution : None.

Return to top of page

92 Out of integer range.

Problem : The real value passed to Truncate or Round was not within the Integer range -32768 to 32767.

Solution : Check you data for a inappropriate or incorrect number.

Return to top of page

F0 Overlay file not found.

Problem : The most common reason for this, especially in Windows, is the files and/or buffers statements are to low in the config.sys.

Solution : Make sure the config.sys file has the following 2 statements:

Files=80

Buffers=80

Reboot your PC.

Return to top of page

FF Heap/stack collision.

Problem : You have run out of memory.

Solution : Reboot your PC.

Return to top of page