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.Timer Timer1 Interval = 1000 Left = 900 Top = 3675 End Begin VB.Frame Frame1 Height = 4050 Left = 150 TabIndex = 0 Top = 60 Width = 7080 Begin VB.Image imgLogo Height = 2385 Left = 360 Picture = "frmSplash.frx":08CA Stretch = -1 'True Top = 795 Width = 1815 End Begin VB.Label lblCopyright Caption = " (c) Copyright 2000 - David Cornelson" BeginProperty Font Name = "Arial" Size = 8.25 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 255 Left = 4125 TabIndex = 1 Top = 3330 Width = 2745 End Begin VB.Label lblVersion Alignment = 1 'Right Justify AutoSize = -1 'True Caption = "Beta 1.3" BeginProperty Font Name = "Arial" Size = 12 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 285 Left = 5940 TabIndex = 2 Top = 2700 Width = 915 End Begin VB.Label lblPlatform Alignment = 1 'Right Justify AutoSize = -1 'True Caption = "Windows 95/98/NT/2000" BeginProperty Font Name = "Verdana" Size = 12 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 270 Left = 3390 TabIndex = 3 Top = 2340 Width = 3465 End Begin VB.Label lblProductName AutoSize = -1 'True Caption = "Visual Inform" BeginProperty Font Name = "Verdana" Size = 18 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 435 Left = 2925 TabIndex = 5 Top = 1440 Width = 2730 End Begin VB.Label lblCompanyProduct AutoSize = -1 'True Caption = "The IF Library presents..." BeginProperty Font Name = "Verdana" Size = 14.25 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 345 Left = 2355 TabIndex = 4 Top = 705 Width = 4080 End End 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() lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision lblProductName.Caption = App.Title End Sub Private Sub Timer1_Timer() Unload Me End Sub