aproctorpe001
Registered User.
- Local time
- Today, 08:51
- Joined
- Nov 19, 2001
- Messages
- 17
I have a textbox control on the form New Friend Input Form Version 7 called LastContactDate. I have a subform of this called Meetings which captures the details of contacts with the friend. What I'm trying to do is when I enter a new meeting date-that this automatically updates the LastContactDate in the main form however the following code doesn't make the update. Any ideas why not?
Private Sub MeetingDate_Exit(Cancel As Integer)
'Setting new meeeting date = LastContactDate
Dim UpdatedDate As Date
UpdatedDate = Me![MeetingDate]
Forms![New Friend Input Form Version 7]![New Friend Input Subform Version 1][LastContactDate] = UpdatedDate
End Sub
Private Sub MeetingDate_Exit(Cancel As Integer)
'Setting new meeeting date = LastContactDate
Dim UpdatedDate As Date
UpdatedDate = Me![MeetingDate]
Forms![New Friend Input Form Version 7]![New Friend Input Subform Version 1][LastContactDate] = UpdatedDate
End Sub