Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

system information

Status
Not open for further replies.

xspanner

Programmer
Jan 16, 2002
29
0
0
RO
Hi.
I want to write a code which displays some system information, for ex. main board type, cpu type&speed, hdd type&size etc...

Has anyone a good idea how is the best way to do this?
 
Some of it you might get with the following API call
SystemParametersInfo

Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, ByVal lpvParam As Any, ByVal fuWinIni As Long) As Long

(
More to be found with
GetSystemInfo

Declare Sub GetSystemInfo Lib "kernel32" Alias "GetSystemInfo" (lpSystemInfo As SYSTEM_INFO)

I was standing in the park, wondering why frisbees got bigger as they came closer... then it hit me!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top