Show date a subform was updated

bwyrwitzke

Registered User.
Local time
Today, 17:22
Joined
Nov 11, 2002
Messages
50
Hi All,

I've got two subforms on my main form and I'd like to show the date any subform changes were made on the main page. It's easy enough to use the the form dirty event for any changes on the main form, but I can't figure out how to carry that over from the subforms. Any help would be appreciated. Thanks.

Bruce

Edit: After a little more searching, I found a similar thread and modified code that Bob Larson suggested. In my subform, I now have the following -
Code:
Private Sub Form_Dirty(Cancel As Integer)
 Forms!frm_Opportunities!Updated = Date
End Sub

Everything works as expected.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom