home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 1635
- ClientLeft = 60
- ClientTop = 1380
- ClientWidth = 3870
- Height = 2040
- Left = 0
- LinkTopic = "Form1"
- ScaleHeight = 1635
- ScaleWidth = 3870
- Top = 1035
- Width = 3990
- Begin VB.CommandButton Command1
- Cancel = -1 'True
- Caption = "Close"
- Height = 405
- Left = 1530
- TabIndex = 0
- Top = 1155
- Width = 1215
- End
- Begin VB.Timer Timer1
- Interval = 1000
- Left = 180
- Top = 1140
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- End
- End Sub
- Private Sub Timer1_Timer()
- Static sngLastTime As Single
- Static sngCurrentTime As Single
- sngCurrentTime = Timer
- Me.Cls
- Me.Print sngCurrentTime - sngLastTime
- sngLastTime = sngCurrentTime
- End Sub
-