Results 1 to 3 of 3

Thread: CPU Speed win95

  1. #1

    Thread Starter
    Member
    Join Date
    Jun 2000
    Posts
    62

    Angry CPU Speed win95

    Please help

    How can i get the CPU Speed in windows 95?????????

  2. #2
    jim mcnamara
    Guest
    You can do it only at a a very low level. Here's a dll (and the whole c++ project). This was first put together by another poster earlier this year. Copy the dll to the system directory.


    Usage in VB:

    Code:
    Private Declare Function GetCpuSpeed Lib "CpuSpeed" () As Long
    Private Sub Form_Load()
      Text1.Text = CStr(GetCpuSpeed) & "MHz"
    End Sub
    Attached Files Attached Files

  3. #3

    Thread Starter
    Member
    Join Date
    Jun 2000
    Posts
    62
    thanks for your help.
    I saw this answer already but I thought that there is might be an easier way, maybe with an api or something.
    beside, this solution give me only an approximate answer.

    thanks anyway.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width