J
jdm
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?
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?