Set error strings on/off.
Sets the error strings switch on or off. This switch controls whether or not the data normally sent to the error file are stored in a buffer for retrieval. The initial setting is on.
phrSetErrorStringsOn(value)
value |
if TRUE, captures output normally sent to the error file into a buffer. |
The try is necessary to keep the error message from displaying immediately.
# This example attempts to run ex1, fails, and displays the error message # (no database is loaded). phrSetErrorStringsOn(TRUE) if (!is.null(try(phrRunString(ex1), silent=TRUE))) { cat(phrGetErrorStrings(), "\n") }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.