Difference between revisions of "RunError"

From Free Pascal wiki
Jump to navigationJump to search
Line 2: Line 2:
  
 
[[File:runerror232.png]]
 
[[File:runerror232.png]]
 +
 +
RunError(232) reports missing cThreads unit.
 +
Add {$define UseCThreads} in the top of the first pascal unit (usually the project .lpr file)
  
 
==See also==
 
==See also==
 
* [http://www.freepascal.org/docs-html/user/userap4.html list of runerrors]
 
* [http://www.freepascal.org/docs-html/user/userap4.html list of runerrors]

Revision as of 14:03, 28 July 2016

A RunError is a low-level error emitted by the freepascal Run Time Library. In Lazarus runerrors are raised as exception.

runerror232.png

RunError(232) reports missing cThreads unit. Add {$define UseCThreads} in the top of the first pascal unit (usually the project .lpr file)

See also