I'd like to make a few form fields required if a certain choice is made in an option group. I already have the fields that I would like to be required set to be enabled upon the condition. Is there a way to make them required as well? Here's my code so far:
Code:
Private Sub Frame244_AfterUpdate()
If Not Shutdown.Value = 3 Then
Frame143.Enabled = True
Frame295.Enabled = True
Parameter.Enabled = True
MsgBox "You must specify in section 3a. whether this is an automatic waste feed cutoff" & _
" or a manual waste feed cutoff.", vbOKOnly, "AWFCO or Manual LWF Cutoff."
End If
If Me.Frame244.Value = "3" Then
Frame143.Enabled = False
Frame295.Enabled = False
Parameter.Enabled = False
End If
End Sub