Home Page (Objects) | Overview | FAQ | Reference
Applies to: Application object
Gets the number of errors that occurred during the last build.
Syntax
object.Errors
Parameters
object
An expression that evaluates to an Application object.
Return Values
The Errors property returns one of the following values:
Remarks
The Errors property is set immediately at the end of the build, before the BuildFinish event is fired. The value of the Errors property will match the errors parameter to the BuildFinish event.
Example
The following example reports the number of errors for a build:
if Errors = -1 then
MsgBox( "No build has occurred yet." )
Else
if Errors = 0 then
MsgBox( "The last build was successful." )
else
MsgBox( "Errors occurred during the last build." )
End if
End if
See Also Application::Warnings property, Application::BuildFinish event.