FZ_FormBase.StartTimer
Starts a measurement of processing time
Public Shared Function StartTimer( _
) As Double
Parameters
None.
Return Value
Returns the time when this method is called.
Description
Starts a measurement of processing time.
Using this method with the GetTimer() method (see
GetTimer) enables you to measure a processing time.
Example
Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
Dim startTime As Double
Dim measTime As Double
' Starts a measurement of processing time
startTime = StartTimer()
' Gets a measurement of processing time
measTime = GetTimer(startTime)
End Sub