S
Steph
Morning all, what I would like to do is when a checkbox is checked, hide
about 7 different controls. I am having success doing it with ONE, but
failing after that. I tried using a function and then calling it from my
Form's On Current AND the Checkbox After Update. With the single line in
there, like this:
Public Function MISLE_only()
If Me.MISLE_case_only = True Then Me.cmdACTSUS_PIW.Visible = False Else
Me.cmdACTSUS_PIW.Visible = True
End Function
NO problems, works great. How can i add the other controls I want to close
when checkbox Me.MISLE_case_only is checked?
Thanks in advance!
Steph
about 7 different controls. I am having success doing it with ONE, but
failing after that. I tried using a function and then calling it from my
Form's On Current AND the Checkbox After Update. With the single line in
there, like this:
Public Function MISLE_only()
If Me.MISLE_case_only = True Then Me.cmdACTSUS_PIW.Visible = False Else
Me.cmdACTSUS_PIW.Visible = True
End Function
NO problems, works great. How can i add the other controls I want to close
when checkbox Me.MISLE_case_only is checked?
Thanks in advance!
Steph