ProcessorType Property
Returns the type of processor that the system is using (for example, i486). Read-only String.
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..."
Applies to | System Object