G
Guest
Win XP and Access 03.
I have a true/false field called "Consigned" in the third tab of a form. I
want for the value recorded on the last record to automatically be recorded
on a new record created. I have the code below, but it isn't working... any
ideas? Is there a difference when it is boolian True/False?
Private Sub consigned_AfterUpdate()
'remembers last consignment setting for new record
Me!Consigned.DefaultValue = Me!Consigned
End Sub
I have a true/false field called "Consigned" in the third tab of a form. I
want for the value recorded on the last record to automatically be recorded
on a new record created. I have the code below, but it isn't working... any
ideas? Is there a difference when it is boolian True/False?
Private Sub consigned_AfterUpdate()
'remembers last consignment setting for new record
Me!Consigned.DefaultValue = Me!Consigned
End Sub