-
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! :)
-
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
-
<?>
May be interest you.
Maybe/Maybe Not