I am teaching myself VBA in MS Access. I want to clear a check box when a new record is created. In other words, if the record is new, I want the check box to revert back to a unchecked state.
I tried:
If Me.NewRecord = True Then
Me.checkbox = False
but that doesn’t seem to work.
Any suggestions?
Thanks,
Mike
It is important to use the right event on Access forms and even more so in Access reports. In this case, the Current event would seem to be appropriate.
You might like to look at http://office.microsoft.com/en-us/access-help/order-of-events-for-database-objects-HP005186761.aspx