; RuntimeError Example ; -------------------- ; RuntimeError halts the program with a fatal error box showing your ; own message - useful for your own error trapping. Print "This example can raise a deliberate runtime error." Print "" Print "Press and hold Y to raise the error, or any other key to skip" WaitKey ; WaitKey returns as the key goes down, so the chosen key is still held If KeyDown(21) Then ; The error box appears, then the program ends immediately RuntimeError "Installation corrupted. Please reinstall." EndIf Print "No error raised - carrying on normally." Print "" Print "Press any key to close the example" WaitKey End