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 = "Splash.frx":0000 KeyPreview = -1 'True LinkTopic = "Form2" MaxButton = 0 'False MinButton = 0 'False Picture = "Splash.frx":000C ScaleHeight = 4245 ScaleWidth = 7380 ShowInTaskbar = 0 'False StartUpPosition = 2 'CenterScreen Begin VB.Timer progTimer Left = 0 Top = 0 End Begin VB.Frame Frame1 Height = 3930 Left = 240 TabIndex = 0 Top = 120 Width = 7080 Begin VB.Label lblClickAnywhereCont BackStyle = 0 'Transparent Caption = "Loading... Click anywhere to continue." BeginProperty Font Name = "Courier New" Size = 15.75 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H8000000F& Height = 1215 Left = 3480 TabIndex = 3 Top = 1680 Width = 3255 End Begin VB.Label lblVersion Alignment = 1 'Right Justify BackStyle = 0 'Transparent Caption = "Version #" BeginProperty Font Name = "Courier New" Size = 12 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H8000000F& Height = 375 Left = 4920 TabIndex = 2 Top = 3600 Width = 2055 End Begin VB.Label lblCopywrite BackStyle = 0 'Transparent Caption = "Program written by Philip Peng [Keripo]. All rights reserved (C)" BeginProperty Font Name = "Microsoft Sans Serif" Size = 9 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H8000000F& Height = 255 Left = 240 TabIndex = 1 Top = 3600 Width = 5535 End Begin VB.Image imgSplashImage Height = 3945 Left = 0 Picture = "Splash.frx":884BE Stretch = -1 'True Top = 0 Width = 7095 End End End Attribute VB_Name = "frmSplash" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False 'iPodLinux iPod nano Installer 'Program written by Philip Peng [Keripo] 'Graphics created by Philip Peng 'Project written for Mr. Benam '2006/4/18 'Has a 3 second countdown before closing splash screen Option Explicit Private Sub Form_KeyPress(KeyAscii As Integer) frmMainScreen.Show frmWelcomeBootScreen.Show Unload Me End Sub Private Sub Form_Load() 'Version info lblVersion.Caption = "Version 1.0" 'Starts the timer progTimer.Enabled = True 'Makes the timer event occur after 3 seconds progTimer.Interval = 3000 End Sub Private Sub imgSplashImage_Click() frmMainScreen.Show frmWelcomeBootScreen.Show Unload Me End Sub Private Sub progTimer_Timer() 'Auto closes splash screen after 3 seconds frmMainScreen.Show frmWelcomeBootScreen.Show Unload Me End Sub