home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmWaste
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Time Waster"
- ClientHeight = 2070
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 3675
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 2070
- ScaleWidth = 3675
- Begin VB.TextBox Text1
- Appearance = 0 'Flat
- Height = 315
- Left = 540
- TabIndex = 0
- Text = "Text1"
- Top = 600
- Width = 2235
- End
- Attribute VB_Name = "frmWaste"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- ' Copyright
- 1997 Desaware Inc. All Rights Reserved
- Option Explicit
- Private Sub Form_Load()
- End Sub
- Private Sub Text1_Change()
- Static z%
- Dim l&
- If z% = 0 Then
- For l& = 1 To 10000000
- Next l&
- z% = 1
- End If
- End Sub
-