views:

155

answers:

2

Hi,

I have a system that recently do not run delphi program and shows runtime error 216. What's the problem and how can I fix it?

Please help me. Thank you

A: 

The error is a general protection fault. It can be caused by just about anything.

Brad
+2  A: 

Runtime error 216 is an 'Access Violation'; there's code accessing invalid memory.

Like Brad says, you have to provide some information for someone to make a guess. And/or you can install a 3rd party exception-handler and if it catches the exception examine the information it provides to isolate the error.

Sertac Akyuz