home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmSplash
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BorderStyle = 0 'None
- ClientHeight = 5040
- ClientLeft = 750
- ClientTop = 1335
- ClientWidth = 7245
- ControlBox = 0 'False
- 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 = 5460
- Left = 690
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 5040
- ScaleWidth = 7245
- Top = 975
- Width = 7365
- Begin VB.Timer Timer1
- Left = 5640
- Top = 120
- End
- Begin VB.Image imgSplash
- Height = 3630
- Left = 0
- Picture = "splash.frx":0000
- Top = 0
- Width = 5250
- End
- Attribute VB_Name = "frmSplash"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Form_Load()
- 'Size form to fit bitmap image
- Width = imgSplash.Width
- Height = imgSplash.Height
- 'Center form on screen
- Move (Screen.Width - Width) / 2, (Screen.Height - Height) / 2
- 'Force painting of form
- Visible = True: Refresh
- 'Fire up timer (3 second interval)
- Timer1.Interval = 3000
- End Sub
- Private Sub Timer1_Timer()
- 'Interval expired, unload form
- Unload Me
- 'Re-enable our main form
- Form1.Visible = True
- End Sub
-