VERSION 5.00
Begin VB.Form menu 
   BackColor       =   &H80000007&
   Caption         =   "Rhinoman"
   ClientHeight    =   7095
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   10485
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form1"
   ScaleHeight     =   7095
   ScaleWidth      =   10485
   StartUpPosition =   3  'Windows Default
   WindowState     =   2  'Maximized
   Begin VB.PictureBox arrow4 
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      ForeColor       =   &H80000008&
      Height          =   615
      Left            =   4080
      ScaleHeight     =   585
      ScaleWidth      =   705
      TabIndex        =   6
      Top             =   5880
      Visible         =   0   'False
      Width           =   735
   End
   Begin VB.PictureBox arrow2 
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      ForeColor       =   &H80000008&
      Height          =   615
      Left            =   4080
      ScaleHeight     =   585
      ScaleWidth      =   705
      TabIndex        =   5
      Top             =   3480
      Visible         =   0   'False
      Width           =   735
   End
   Begin VB.PictureBox arrow3 
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      ForeColor       =   &H80000008&
      Height          =   615
      Left            =   4080
      ScaleHeight     =   585
      ScaleWidth      =   705
      TabIndex        =   4
      Top             =   4680
      Visible         =   0   'False
      Width           =   735
   End
   Begin VB.PictureBox arrow1 
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      ForeColor       =   &H80000008&
      Height          =   615
      Left            =   4080
      ScaleHeight     =   585
      ScaleWidth      =   705
      TabIndex        =   3
      Top             =   2280
      Width           =   735
   End
   Begin VB.Label Label4 
      BackColor       =   &H80000012&
      Caption         =   "Credits"
      BeginProperty Font 
         Name            =   "Lucida Console"
         Size            =   24
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H8000000D&
      Height          =   615
      Left            =   5040
      TabIndex        =   7
      Top             =   4680
      Width           =   2535
   End
   Begin VB.Label Label3 
      BackColor       =   &H80000012&
      Caption         =   "Options"
      BeginProperty Font 
         Name            =   "Lucida Console"
         Size            =   24
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H8000000D&
      Height          =   615
      Left            =   5040
      TabIndex        =   2
      Top             =   3480
      Width           =   2535
   End
   Begin VB.Label Label2 
      BackColor       =   &H80000012&
      Caption         =   "Quit"
      BeginProperty Font 
         Name            =   "Lucida Console"
         Size            =   24
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H8000000D&
      Height          =   615
      Left            =   5040
      TabIndex        =   1
      Top             =   5880
      Width           =   2535
   End
   Begin VB.Label Label1 
      BackColor       =   &H80000012&
      Caption         =   "New Game"
      BeginProperty Font 
         Name            =   "Lucida Console"
         Size            =   24
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H8000000D&
      Height          =   615
      Left            =   5040
      TabIndex        =   0
      Top             =   2280
      Width           =   2535
   End
End
Attribute VB_Name = "menu"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'holds the menu index
Dim Menu As Integer



Private Sub form_KeyDown(KeyCode As Integer, Shift As Integer)
    If KeyCode = 40 Then
        If Menu = 1 Then
            arrow1.Visible = False
            arrow2.Visible = True
            Menu = 2
        ElseIf Menu = 2 Then
            arrow2.Visible = False
            arrow3.Visible = True
            Menu = 3
        ElseIf Menu = 3 Then
            arrow3.Visible = False
            arrow4.Visible = True
            Menu = 4
        End If
    End If
    
    If KeyCode = 38 Then
        If Menu = 4 Then
            arrow4.Visible = False
            arrow3.Visible = True
            Menu = 3
        ElseIf Menu = 3 Then
            arrow3.Visible = False
            arrow2.Visible = True
            Menu = 2
        ElseIf Menu = 2 Then
            arrow2.Visible = False
            arrow1.Visible = True
            Menu = 1
        End If
    End If
End Sub

Private Sub Form_Load()
    
    'Menu index = 1
    Menu = 1
    
End Sub
