MathCoprocessorAvailable Property

Applies To

Application object.

Description

True if a math coprocessor is installed on the system. Read-only Boolean.

See Also

MathCoprocessorInstalled property.

Example

This example displays a message indicating whether a math coprocessor is installed on the system.

If Application.MathCoprocessorAvailable = True Then
    MsgBox "A math coprocessor is installed."
Else
    MsgBox "A math coprocessor is not installed."
End If