Hi,
I am a bit confused where I went wrong....
In a form, I have 4 option buttons in a frame, named optLog. The Click Event is as follows:
Private Sub optLog_Click()
selLog
End Sub
In the module, the function selLog contains the following:
Select Case optLog
Case 1
DoCmd.OpenForm "frmAdvantagePlan"
Case 2
DoCmd.OpenForm "frmCMS_NGG"
Case 3
DoCmd.OpenForm "frmConsumerLife"
Case 4
DoCmd.OpenForm "frmNGGBksIDs"
End Select.
When I use the Click event in the form, nothing happens.
What did I miss?
Thanks in advance,
Jake
I am a bit confused where I went wrong....
In a form, I have 4 option buttons in a frame, named optLog. The Click Event is as follows:
Private Sub optLog_Click()
selLog
End Sub
In the module, the function selLog contains the following:
Select Case optLog
Case 1
DoCmd.OpenForm "frmAdvantagePlan"
Case 2
DoCmd.OpenForm "frmCMS_NGG"
Case 3
DoCmd.OpenForm "frmConsumerLife"
Case 4
DoCmd.OpenForm "frmNGGBksIDs"
End Select.
When I use the Click event in the form, nothing happens.
What did I miss?
Thanks in advance,
Jake