VERSION 5.00 Begin VB.Form frmMainScreen Appearance = 0 'Flat BackColor = &H80000005& Caption = "Welcome to the iPodLinux Installer for the iPod Nano - Created by Keripo" ClientHeight = 6360 ClientLeft = -11355 ClientTop = 2010 ClientWidth = 9360 LinkTopic = "Form1" Picture = "MainScreen.frx":0000 ScaleHeight = 6360 ScaleWidth = 9360 StartUpPosition = 2 'CenterScreen Begin VB.OLE oleIntro Class = "Word.Document.8" Height = 4455 Left = 5400 OleObjectBlob = "MainScreen.frx":18663 TabIndex = 5 Top = 1200 Width = 3255 End Begin VB.Label lblExtras BackStyle = 0 'Transparent Caption = "Extras" BeginProperty Font Name = "Courier New" Size = 18 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 2400 TabIndex = 4 Top = 4080 Width = 1335 End Begin VB.Image imgExtras Height = 720 Left = 1320 Picture = "MainScreen.frx":1DC7B Top = 3960 Width = 720 End Begin VB.Label lblUninstall BackStyle = 0 'Transparent Caption = "Uninstall" BeginProperty Font Name = "Courier New" Size = 18 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 2400 TabIndex = 3 Top = 5040 Width = 1935 End Begin VB.Image imgUninstall Height = 720 Left = 1320 Picture = "MainScreen.frx":200BF Top = 4920 Width = 720 End Begin VB.Image imgUpdating Height = 720 Left = 1320 Picture = "MainScreen.frx":22503 Top = 3000 Width = 720 End Begin VB.Label lblUpdating BackStyle = 0 'Transparent Caption = "Updating" BeginProperty Font Name = "Courier New" Size = 18 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 2400 TabIndex = 2 Top = 3120 Width = 1815 End Begin VB.Label lblZillas BackStyle = 0 'Transparent Caption = "Zillas" BeginProperty Font Name = "Courier New" Size = 18 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 2400 TabIndex = 1 Top = 2160 Width = 1455 End Begin VB.Image imgZillas Height = 720 Left = 1320 Picture = "MainScreen.frx":24947 Top = 2040 Width = 720 End Begin VB.Image imgInstalliPL Height = 690 Left = 1320 Picture = "MainScreen.frx":26D8B Top = 1080 Width = 720 End Begin VB.Label lblInstaliPL BackStyle = 0 'Transparent Caption = "Install" BeginProperty Font Name = "Courier New" Size = 18 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 2400 TabIndex = 0 Top = 1200 Width = 1695 End End Attribute VB_Name = "frmMainScreen" 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 (see the "Pictures" folder) 'The four icon graphics are taken off the iPodLinux project's ' wiki page: http://ipodlinux.org/Main_Page 'Project written for Mr. Benam '2006/4/18 'This is the main page. Right now, only installation of zillas ' is completed and working. Option Explicit Private Sub imgExtras_Click() MsgBox "Not available yet!" End Sub Private Sub imgInstalliPL_Click() MsgBox "Not available yet!" End Sub Private Sub imgUninstall_Click() MsgBox "Not available yet!" End Sub Private Sub imgUpdating_Click() MsgBox "Not available yet!" End Sub Private Sub imgZillas_Click() Unload Me frmInstallZillas.Show End Sub Private Sub lblExtras_Click() MsgBox "Not available yet!" End Sub Private Sub lblInstaliPL_Click() MsgBox "Not available yet!" End Sub Private Sub lblUninstall_Click() MsgBox "Not available yet!" End Sub Private Sub lblUpdating_Click() MsgBox "Not available yet!" End Sub Private Sub lblZillas_Click() Unload Me frmInstallZillas.Show End Sub