Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
CPU Detection in VB
Name: Th3M1ghtyD8 Date: March 11, 2002 at 05:49:51 Pacific
Comment:
Anyone know how to detect P3/P4 and Athlon/Durons in VB?
Summary: Hello...i used to be a advanced VB programmer but i havent done it for 3 years now...I was wondering how i could detect the CPU's temperature using VB code? ...
Summary: I think you mean Select Case...it is VB's equivalent to C/C++'s switch statement. IN C/C++ switch(aValue) { case 0: DoSomething(); break; case 1: DoSomethingElse(); ...