Message Panel |
Top Previous Next |
The Message Panel displays Compile Errors, Compile Warnings, Runtime Errors, Search Results and other relevant information. Messages are added to the list during compilation and execution of the program.
Message Types. The following types of messages can be displayed in the Message Panel:
Compile Errors. Compile Errors are caused by syntax, logic or range errors that prevent the compiler from generating valid code. Compile errors are fatal errors; and if a compile error is encountered, the compiler stops generating code and no executable program is generated. The compiler will continue the compilation process to find any additional errors. After four errors have been detected, the compile process is aborted. Click here for a detailed description of the Compile errors.
Compile Warnings. Compile Warnings are non-fatal errors, problems or inconsistencies that do not prevent the code from being compiled, but might cause problems in certain circumstances. They also include hints that can be used to improve and clean up the code. For example, the compiler warns if you declared variables that you are not using. Click here for a detailed description of the warning messages. Note: Some Compile warning messages are less useful than others. For this reason, you have the option of disabling any of the warning messages through the Configuration Dialog.
Runtime Errors. Runtime Errors occur during the execution of the code. Runtime errors appear in the Message Panel if the program is run under the IDE. If the program is run as a stand-alone program, the error messages will appear in a dialog box. Click here for a detailed description of Run-time errors.
Search Messages. The results of Global Searches are displayed in the Message Panel. Each message shows the file where the match was found, the line number and the line of text. This makes it easy to choose specific locations to examine in more detail. Clicking on an individual line of text will open the specified file and take you to the exact line of text where the target was found.
|