VERSION 5.00
Begin VB.Form frmConcenSplash 
   BorderStyle     =   0  'None
   Caption         =   "Form1"
   ClientHeight    =   5370
   ClientLeft      =   5190
   ClientTop       =   3345
   ClientWidth     =   6585
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "ConSplsh.frx":0000
   ScaleHeight     =   5370
   ScaleWidth      =   6585
   ShowInTaskbar   =   0   'False
   Begin VB.Timer tmrSplash 
      Interval        =   3000
      Left            =   6120
      Top             =   3780
   End
   Begin VB.Label lblCopyright 
      Alignment       =   1  'Right Justify
      BackStyle       =   0  'Transparent
      Caption         =   "Copyright © 2000-2004 thevbprogrammer.com"
      BeginProperty Font 
         Name            =   "Arial"
         Size            =   9.75
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FFFFFF&
      Height          =   255
      Left            =   0
      TabIndex        =   1
      Top             =   5040
      Width           =   6435
   End
   Begin VB.Label Label1 
      Alignment       =   2  'Center
      BackStyle       =   0  'Transparent
      Caption         =   "Concentration"
      BeginProperty Font 
         Name            =   "Arial"
         Size            =   36
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FFFFFF&
      Height          =   915
      Left            =   60
      TabIndex        =   0
      Top             =   60
      Width           =   6495
   End
   Begin VB.Image Image1 
      Height          =   4215
      Left            =   0
      Picture         =   "ConSplsh.frx":4B146
      Stretch         =   -1  'True
      Top             =   1200
      Width           =   4425
   End
End
Attribute VB_Name = "frmConcenSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Form_Load()

   CenterForm Me
    
End Sub

Private Sub tmrSplash_Timer()

    frmConcentration.Show
    Unload Me

End Sub
