D
Douglas J. Steele
Put your logic into the form's Current event.
-----Original Message-----
Put your logic into the form's Current event.
--
Doug Steele, Microsoft Access MVP
.
-----Original Message-----
If you don't need the check box data stored in the
underlying table, you can just make the check box a
calculated control; change the control source for the
check box to something like
=Iif([HiddenTextName]=Whatever,True,False)
HTH
Sheldon Slade
-----Original Message-----
I have a form with checkboxes that looks for a certian
value in a hidden text box. If the value is present the
box is checked and if not the box is unchecked. My
problem is that when I go to the next person's record the
logic is not automatically re-run, so the check boxes
appear the same for everyone. I would like to know if
there is a way to either refresh the form or call a
subroutine when the user changes records regardless of
which field the user is in on the form.
Thanks,
Dan
.