When you set the value of a checkbox in code the events don't get triggered.
Call the events just like you would a sub or function. For example your code
may be something like this -
[chkBox] = True
chkBox_AfterUpdate
This will execute the code in the event just as if you clicked on it.
Jeff
>I have a subform that is populated by a table that holds lots of yes/no
> values. The user sees points at the side and then periods across the top.
[quoted text clipped - 17 lines]
>
> thanks
Deano - 30 Jan 2006 14:18 GMT
> When you set the value of a checkbox in code the events don't get
> triggered.
[quoted text clipped - 4 lines]
> [chkBox] = True
> chkBox_AfterUpdate
Thanks the only worry I'm left with is determined which row they've selected
for a given column. I'm trying to adjust my existing code still to get this
done, can't believe it can't be done.