Hello : )
I've tried a ton of different ways to go about this and i'm completly stumped.
I have a main form with subform. On the Subform's beforeupdate event i want to change somehting on the mainform. so my code looks liek this:
i've tried me.parent![Date Modified]
i've tried creating a function in a module that runs this code and calling the function from the subform's beforupdate procedure.
idk what to do please help.
the Error message i get: "The Expression before update you entered as the event property setting produced the following error: object or class does not support the set of events."
I've tried a ton of different ways to go about this and i'm completly stumped.
I have a main form with subform. On the Subform's beforeupdate event i want to change somehting on the mainform. so my code looks liek this:
Code:
Private Sub Form_BeforeUpdate(Cancel As Integer)
Forms![new1]![Date Modified] = Now()
End Sub
i've tried me.parent![Date Modified]
i've tried creating a function in a module that runs this code and calling the function from the subform's beforupdate procedure.
idk what to do please help.

the Error message i get: "The Expression before update you entered as the event property setting produced the following error: object or class does not support the set of events."