home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX"
- Begin VB.Form frmSplash
- ClientHeight = 1680
- ClientLeft = 60
- ClientTop = 60
- ClientWidth = 3720
- ControlBox = 0 'False
- HelpContextID = 10
- LinkTopic = "Form1"
- ScaleHeight = 1680
- ScaleWidth = 3720
- StartUpPosition = 2 'CenterScreen
- Begin VB.Timer tmrS
- Left = 2760
- Top = 600
- End
- Begin ComctlLib.ProgressBar prgSBar
- Height = 255
- Left = 120
- TabIndex = 3
- Top = 1200
- Width = 3495
- _ExtentX = 6165
- _ExtentY = 450
- _Version = 327682
- Appearance = 1
- End
- Begin VB.Label lblSMsg
- AutoSize = -1 'True
- Caption = "loading ..."
- BeginProperty Font
- Name = "Courier New"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 210
- Left = 840
- TabIndex = 2
- Top = 840
- Width = 1155
- End
- Begin VB.Label lblSVer
- AutoSize = -1 'True
- Caption = "V 1.0"
- BeginProperty Font
- Name = "Courier New"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FF0000&
- Height = 210
- Left = 1560
- TabIndex = 1
- Top = 480
- Width = 525
- End
- Begin VB.Label lblSTitle
- AutoSize = -1 'True
- Caption = """Keep Your Names"""
- BeginProperty Font
- Name = "Courier New"
- Size = 14.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000080&
- Height = 330
- Left = 720
- TabIndex = 0
- Top = 120
- Width = 2805
- End
- Begin VB.Image imgS
- Height = 480
- Left = 120
- Picture = "frmSplash.frx":0000
- Top = 120
- Width = 480
- End
- Attribute VB_Name = "frmSplash"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- '*** Code added by HelpWriter ***
- ' SetAppHelp Me.hWnd
- '***********************************
- 'makes sure the user knows the program is busy
- MousePointer = vbHourglass
- 'start the progress bar at zero.
- prgSBar.Value = prgSBar.Min
- prgSBar.Visible = True
- 'takes care of the progress bar
- prgSBar.Visible = True
- prgSBar.Align = vbAlignNone
- prgSBar.Min = 0
- prgSBar.Max = 100
- tmrS.Interval = 100
- tmrS.Enabled = True
- End Sub
- Private Sub tmrS_Timer()
- 'increase the ProgressBar's value.
- prgSBar.Value = prgSBar.Value + 5
- 'if we're done, goto Main screen
- If prgSBar.Value >= prgSBar.Max Then
- prgSBar.Visible = False
- tmrS.Enabled = False
- MousePointer = vbDefault
- Call EndIt
- End If
- End Sub
- Private Sub EndIt()
- Unload frmSplash
- Set frmSplash = Nothing
- frmMain.Show
- End Sub
-