VERSION 5.00 Begin VB.Form frmMenu BorderStyle = 4 'Fixed ToolWindow Caption = "Windoze Ball Game by Gaz D 1999" ClientHeight = 990 ClientLeft = 45 ClientTop = 300 ClientWidth = 4080 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 990 ScaleWidth = 4080 ShowInTaskbar = 0 'False StartUpPosition = 1 'CenterOwner Begin VB.CommandButton CmdQuit Caption = "Quit!" BeginProperty Font Name = "System" Size = 19.5 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 2880 TabIndex = 1 ToolTipText = "Quit the game!" Top = 480 Width = 1095 End Begin VB.CommandButton cmdGo Caption = "Go!" BeginProperty Font Name = "System" Size = 19.5 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 495 Left = 120 TabIndex = 0 ToolTipText = "Start the game..." Top = 480 Width = 1095 End Begin VB.Label lblHiscore Alignment = 2 'Center Caption = "Last highscore was 150 by Gaz" ForeColor = &H000000FF& Height = 495 Left = 120 TabIndex = 2 ToolTipText = "The current highest score!" Top = 0 Width = 3855 End End Attribute VB_Name = "frmMenu" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub cmdGo_Click() frmGame.tmrGameSpeed.Enabled = True Unload Me End Sub Private Sub cmdQuit_Click() Unload Me End Sub Private Sub Form_Load() lblHiscore = "Highest score is " & HiScore & " by " & _ HiName frmGame.tmrGameSpeed.Enabled = False End Sub Private Sub Form_UnLoad(cancel As Integer) If frmGame.tmrGameSpeed.Enabled = False Then Quitting = True End Sub