RE: BeforeUpdate event is not working
Good Morning,
Can anyone think of why BeforeUpdate event is not working?
I have a check box in a subform when clicks it executed BeforeUpdate event but sees the check box is true. Why?
I tested with another form the BeforeUpdate event works in check box. There is Afterupdate event for the check box in a subform but that should not be the problem.
This is my code in subform:
Private Sub quick_sort_BeforeUpdate(Cancel As Integer)
If Me!quick_sort.Value = True Then
Me!prev_dispo.Value = "Quick-Sort"
else
Me!prev_dispo.Value = ""
end if
end sub
I just can't understand why this is not working.
Thanks for your input.
Good Morning,
Can anyone think of why BeforeUpdate event is not working?
I have a check box in a subform when clicks it executed BeforeUpdate event but sees the check box is true. Why?
I tested with another form the BeforeUpdate event works in check box. There is Afterupdate event for the check box in a subform but that should not be the problem.
This is my code in subform:
Private Sub quick_sort_BeforeUpdate(Cancel As Integer)
If Me!quick_sort.Value = True Then
Me!prev_dispo.Value = "Quick-Sort"
else
Me!prev_dispo.Value = ""
end if
end sub
I just can't understand why this is not working.
Thanks for your input.