VERSION 5.00 Begin VB.Form frmAbout BorderStyle = 3 'Fixed Dialog Caption = "About Boot Manager" ClientHeight = 2985 ClientLeft = 2340 ClientTop = 1935 ClientWidth = 5295 ClipControls = 0 'False LinkTopic = "Form2" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 2985 ScaleWidth = 5295 ShowInTaskbar = 0 'False StartUpPosition = 1 'CenterOwner Begin VB.Frame Frame1 Height = 1575 Left = 120 TabIndex = 5 Top = 840 Width = 5055 Begin VB.Label Label2 Caption = $"frmAbout.frx":0000 Height = 1350 Left = 80 TabIndex = 6 Top = 150 Width = 4900 End End Begin VB.CommandButton cmdOK Cancel = -1 'True Caption = "OK" Default = -1 'True Height = 310 Left = 3840 TabIndex = 0 Top = 2530 Width = 1260 End Begin VB.Label Label1 Alignment = 2 'Center BackColor = &H00FFFFFF& BorderStyle = 1 'Fixed Single Caption = "Email: matt@drum14.freeserve.co.uk" ForeColor = &H000000FF& Height = 270 Left = 120 TabIndex = 4 Top = 2550 Width = 3495 End Begin VB.Label lblAuthor Alignment = 2 'Center BackColor = &H00FFFFFF& BorderStyle = 1 'Fixed Single Caption = "Author: Matthew Tavner (c) 1999" ForeColor = &H000040C0& Height = 270 Left = 1920 TabIndex = 3 Top = 480 Width = 3255 End Begin VB.Label lblVersion Alignment = 2 'Center BackColor = &H00FFFFFF& BorderStyle = 1 'Fixed Single ForeColor = &H00FF0000& Height = 270 Left = 120 TabIndex = 2 Top = 480 Width = 1695 End Begin VB.Label lblProductID Alignment = 2 'Center BackColor = &H00FFFFFF& BorderStyle = 1 'Fixed Single Caption = "Windows Boot Manager for Windows NT (and Windows 2000)" ForeColor = &H000000FF& Height = 270 Left = 120 TabIndex = 1 Top = 120 Width = 5055 End End Attribute VB_Name = "frmAbout" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub cmdOK_Click() Unload Me End Sub Private Sub Form_Load() lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision End Sub