Problem with Option Buttons

From: jdm (anonymous_at_discussions.microsoft.com)
Date: 03/29/04


Date: Mon, 29 Mar 2004 04:54:59 -0800

I have option buttons that link to pages within the form
and others that link to fields on a particular page. When
an option button for the first record is selected, that
option/page is selected for all of the subsequent records.

This is the coding I have surrounding the form

Private Sub Form_Load()
SetEnable
End Sub

This is an example of coding under Sub SetEnable() for an
option button that selects a page

If [RFV OPTION].Value = -1 Then
RFV.Enabled = True
Else
RFV.Enabled = False
End If

What am I doing wrong?