Basic.Processor$ (property)

Syntax

Basic.Processor$

Description

Returns a String containing the name of the CPU in the computer on which BasicScript is running.

Comments

Sample values returned for Win32 platforms include:

 

Platform

Sample Value returned

 

Intel

80386

80486

Pentium

 

MIPS

The string "Rx" such as R4000

 

Alpha

321064

321066

321164

 

PowerPC

601

603

604

603+

604+

620

Example

'

'This example prints the CPU of the computer on which

'BasicScript is executing.

'

Sub Main()

MsgBox "Processor = " & Basic.Processor$

End Sub

See Also

Basic.ProcessorCount (property)

Note

You can retrieve the number of processors within the computer using the Basic.ProcessorCount property.

More information

B