ProcessorType Property

Microsoft Word Visual Basic

expression.ProcessorType

expression    Required. An expression that returns a System object.

Example

This example displays a message on the status bar if the processor that the system is using isn't a Pentium processor.

If System.ProcessorType <> "Pentium" Then _
    StatusBar = "Please wait..."