is it possible to find the computer speed using vb ?
also i need to find the ram of the machine.
Printable View
is it possible to find the computer speed using vb ?
also i need to find the ram of the machine.
Memory:
http://www.mvps.org/vbnet/code/system/globalmemory.htm
Several of us have posted various versions of cpuspeed.dll
This thread has one discussion
http://www.vbforums.com/showthread.p...light=cpuspeed
This one has a .dll attached:
http://www.vbforums.com/showthread.p...light=cpuspeed
Use WMI - installed with Me,2K,XP, can be added to others.
VB Code:
Set cpus = GetObject("winmgmts:").InstancesOf("Win32_Processor") For Each cpu In cpus MsgBox cpu.MaxClockSpeed Next
You can get all sorts of hardware and software info with this. It's really cool.
WMI does work easily - but we had problems with it on some Win9X systems. So I had to work around it.