home *** CD-ROM | disk | FTP | other *** search
Visual Basic class definition | 1998-06-22 | 705 b | 33 lines |
- VERSION 1.0 CLASS
- BEGIN
- MultiUse = -1 'True
- Persistable = 0 'NotPersistable
- DataBindingBehavior = 0 'vbNone
- DataSourceBehavior = 0 'vbNone
- MTSTransactionMode = 0 'NotAnMTSObject
- END
- Attribute VB_Name = "CTimer"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = True
- Attribute VB_PredeclaredId = False
- Attribute VB_Exposed = True
- Dim totalInterval As Double
- Dim T1 As Double
-
- Public Sub StartCounting()
- T1 = Time
- End Sub
-
- Public Sub StopCounting()
- totalInterval = totalInterval + Time - T1
- End Sub
-
- Property Get ElapsedTime() As Double
- ElapsedTime = totalInterval
- End Property
-
- Public Sub ResetTimer()
- totalInterval = 0
- End Sub
-
-