Results 1 to 3 of 3

Thread: Stopwatch and GetTickCount

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2000
    Posts
    6

    Red face

    hi..once again

    im currently working on a project to make a stopwatch using the get tick count funtion..im have a code that can make a stopwatch but without using the Gettickcount function..im trying to design it using the gettcikcount fucntion..

    any ideas

    thanks!

  2. #2
    Guest
    in a form put this code:

    Code:
    Private Declare Function GetTickCount Lib "kernel32" () As Long
    
    Dim lStart As Long
    Dim lEnd As Long
    
    
    Option Explicit
    
    Sub Command1_Click()
        Msgbox lEnd - lStart
    End Sub

  3. #3
    _______ HeSaidJoe's Avatar
    Join Date
    Jun 1999
    Location
    Canada
    Posts
    3,946

    <?>

    May be interest you.
    Maybe/Maybe Not
    "A myth is not the succession of individual images,
    but an integerated meaningful entity,
    reflecting a distinct aspect of the real world."

    ___ Adolf Jensen

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