home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mastering Visual Basic 6
/
mastvb6.iso
/
ch_code
/
ch15
/
timermod
/
timermod.bas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1996-06-05
|
212 b
|
13 lines
Attribute VB_Name = "TimerModule"
Public TotalInterval As Double
Dim T1 As Double
Sub StartCounting()
T1 = Time
End Sub
Sub StopCounting()
TotalInterval = TotalInterval + Time - T1
End Sub