home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form2
- BackColor = &H00808080&
- Caption = "Form2"
- ClientHeight = 2685
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 5505
- LinkTopic = "Form2"
- ScaleHeight = 2685
- ScaleWidth = 5505
- StartUpPosition = 3 'Windows Default
- Begin VB.Label Label1
- BorderStyle = 1 'Fixed Single
- Caption = "FORM 2"
- BeginProperty Font
- Name = "Tahoma"
- Size = 48
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 1245
- Left = 1035
- TabIndex = 0
- Top = 525
- Width = 3600
- End
- Attribute VB_Name = "Form2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- Dim LTime
- LTime = Timer
- While Timer - LTime < 5
- Wend
- End Sub
-