MathCoprocessorAvailable 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