A runtime error is exactly what it says on the tin - an error detected at runtime!
Where are these errors popping up? Running a program or surfing the web?

These errors are errors that sift through the compiler, (normally due to the code being recognised as satisfactory code by the environment but doesnt make sense when run), when compiling but are then detected by the machine when interpreted into a low level language.

Your puter will only be able to debug these errors if you have the appropriate s/w installed ie. Programming environment for the code in question.

Unless you are a competent coder, chances are you'll not be able to decode these errors and going by the nature of this post you're not a competent coder!

If you debug the errors then you'll not get that error anymore!

HTH

r3b007