Help with options

  • Thread starter Thread starter Guest
  • Start date Start date
Help,

This is working however; I can still select more than one at a time on the
form? shouldn't this control that situation? I thank you for your help.
 
Can you just send or post the entire form module?
I think it's File > Export to save as a txt or bas file.
 
Hey, I am assuming that you want me to post teh event procedures that in the
form for the sat/unsat/nonparticipant? I do not have a module but only event
procedure in after update properties. Here is the following:

Private Sub Individual_Sat__AfterUpdate()
If Not Me![Sat?] Then Exit Sub
Me![Unsat?] = False
Me![NonParticipant] = False
End Sub

Private Sub Individual_UnSat__AfterUpdate()
If Not Me![Unsat?] Then Exit Sub
Me![Sat?] = False
Me![NonParticipant] = False
End Sub

Private Sub NonParticipant_AfterUpdate()
If Not Me![NonParticipant] Then Exit Sub
Me![Sat?] = False
Me![Unsat?] = False
End Sub

HELP, I'm drowning in code!
 
Back
Top