home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.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"
- charset = 0
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 2475
- Left = 1035
- LinkTopic = "Form1"
- ScaleHeight = 2070
- ScaleWidth = 3675
- Top = 1140
- Width = 3795
- 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_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- ' Copyright
- 1996 by Desaware. All Rights Reserved
- 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
-