VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   8730
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   10515
   LinkTopic       =   "Form1"
   ScaleHeight     =   8730
   ScaleWidth      =   10515
   StartUpPosition =   3  'Windows Default
   Begin VB.Frame Frame1 
      Caption         =   "Objective Test"
      Height          =   8295
      Left            =   240
      TabIndex        =   0
      Top             =   240
      Width           =   10095
      Begin VB.CommandButton next 
         Caption         =   "NEXT"
         Height          =   615
         Left            =   3480
         TabIndex        =   8
         Top             =   6120
         Width           =   1455
      End
      Begin VB.CommandButton back 
         Caption         =   "BACK"
         Height          =   615
         Left            =   1200
         TabIndex        =   7
         Top             =   6120
         Width           =   1455
      End
      Begin VB.CommandButton check 
         Caption         =   "CHECK"
         Height          =   615
         Left            =   1200
         TabIndex        =   5
         Top             =   5160
         Width           =   1455
      End
      Begin VB.OptionButton optD 
         Caption         =   "Energy"
         Height          =   615
         Left            =   5520
         TabIndex        =   4
         Top             =   2280
         Width           =   1815
      End
      Begin VB.OptionButton optC 
         Caption         =   "Motion"
         Height          =   495
         Left            =   5520
         TabIndex        =   3
         Top             =   1560
         Width           =   2535
      End
      Begin VB.OptionButton optB 
         Caption         =   "Reference Point"
         Height          =   855
         Left            =   960
         TabIndex        =   2
         Top             =   2040
         Width           =   2535
      End
      Begin VB.OptionButton optA 
         Caption         =   "Velocity"
         Height          =   255
         Left            =   960
         TabIndex        =   1
         Top             =   1560
         Width           =   1935
      End
      Begin VB.OLE OLE1 
         Class           =   "Word.Document.8"
         Height          =   615
         Left            =   360
         OleObjectBlob   =   "mmchoice.frx":0000
         SourceDoc       =   "C:\Documents and Settings\Anthony\My Documents\1.doc"
         TabIndex        =   14
         Top             =   600
         Width           =   8415
      End
      Begin VB.Label lbl5 
         Alignment       =   2  'Center
         BackColor       =   &H0080FFFF&
         Caption         =   "5"
         BeginProperty Font 
            Name            =   "MS Sans Serif"
            Size            =   24
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H000000FF&
         Height          =   615
         Left            =   7680
         TabIndex        =   13
         Top             =   6120
         Width           =   375
      End
      Begin VB.Label lbl4 
         Alignment       =   2  'Center
         BackColor       =   &H0080FFFF&
         Caption         =   "4"
         BeginProperty Font 
            Name            =   "MS Sans Serif"
            Size            =   24
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H000000FF&
         Height          =   615
         Left            =   7080
         TabIndex        =   12
         Top             =   6120
         Width           =   375
      End
      Begin VB.Label lbl3 
         Alignment       =   2  'Center
         BackColor       =   &H0080FFFF&
         Caption         =   "3"
         BeginProperty Font 
            Name            =   "MS Sans Serif"
            Size            =   24
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H000000FF&
         Height          =   615
         Left            =   6480
         TabIndex        =   11
         Top             =   6120
         Width           =   375
      End
      Begin VB.Label lbl2 
         Alignment       =   2  'Center
         BackColor       =   &H0080FFFF&
         Caption         =   "2"
         BeginProperty Font 
            Name            =   "MS Sans Serif"
            Size            =   24
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H000000FF&
         Height          =   615
         Left            =   5880
         TabIndex        =   10
         Top             =   6120
         Width           =   375
      End
      Begin VB.Label lbl1 
         Alignment       =   2  'Center
         BackColor       =   &H0080FFFF&
         Caption         =   "1"
         BeginProperty Font 
            Name            =   "MS Sans Serif"
            Size            =   24
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H000000FF&
         Height          =   615
         Left            =   5280
         TabIndex        =   9
         Top             =   6120
         Width           =   375
      End
      Begin VB.Label lblremark 
         BackColor       =   &H00FFFFFF&
         BorderStyle     =   1  'Fixed Single
         Height          =   615
         Left            =   3480
         TabIndex        =   6
         Top             =   5160
         Width           =   2895
      End
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub check_Click()
If optA.Value = True Then
lblremark.Caption = "CORRECT"
Else
lblremark.Caption = "INCORRECT"
End If


End Sub

Private Sub questionbox_Updated(Code As Integer)

End Sub
