I'd like to think that I'm decent at coding stuff sometimes but I'm having a VERY bad day today. Not enough sleep or something. I'm trying to do something so simple, yet I can't get it.
I have a table called "drinfo". In that table, I have a field called "DateResponseRecvd". I've added a checkbox called "MoreInfoNeeded" to a form that, when checked, needs to clear the date in "DateResponseRecvd".
I'm trying to use the AfterUpdate() sub:
Private Sub MoreInfoNeeded_AfterUpdate()
DateResponseRecvd.Value = Null
Me.Requery
End Sub
...but it isn't working because the DateResponseRecvd field isn't a field on the form.
Can anyone point me in the right direction?
Thanks
I have a table called "drinfo". In that table, I have a field called "DateResponseRecvd". I've added a checkbox called "MoreInfoNeeded" to a form that, when checked, needs to clear the date in "DateResponseRecvd".
I'm trying to use the AfterUpdate() sub:
Private Sub MoreInfoNeeded_AfterUpdate()
DateResponseRecvd.Value = Null
Me.Requery
End Sub
...but it isn't working because the DateResponseRecvd field isn't a field on the form.
Can anyone point me in the right direction?
Thanks