home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmSplash
- BorderStyle = 3 'Fixed Dialog
- ClientHeight = 4245
- ClientLeft = 255
- ClientTop = 1410
- ClientWidth = 7380
- ClipControls = 0 'False
- ControlBox = 0 'False
- Icon = "frmSplash.frx":0000
- KeyPreview = -1 'True
- LinkTopic = "Form2"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4245
- ScaleWidth = 7380
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Begin VB.Frame Frame1
- Caption = "Status:"
- Height = 3015
- Left = 0
- TabIndex = 1
- Top = 1200
- Width = 7335
- Begin VB.Timer Timer1
- Interval = 1
- Left = 840
- Top = 1800
- End
- Begin VB.Label Status
- BorderStyle = 1 'Fixed Single
- Caption = "Loading Form..."
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 13.5
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 2655
- Left = 120
- TabIndex = 2
- Top = 240
- Width = 7095
- End
- End
- Begin VB.Label Label1
- BorderStyle = 1 'Fixed Single
- Caption = "Loading..."
- BeginProperty Font
- Name = "Times New Roman"
- Size = 48
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H000000FF&
- Height = 1215
- Left = 0
- TabIndex = 0
- Top = 0
- Width = 7335
- End
- Attribute VB_Name = "frmSplash"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Status_Click()
- End Sub
- Private Sub Timer1_Timer()
- Load Form1
- Form1.Show
- Timer1.Enabled = False
- End Sub
-