Hi,
I have a sub-form in a form from which users can enter multiple dates. As they enter dates, it updates a field on the main form with the ‘latest’ date. This is the code I’m using on ‘After-Update’ function of the field in the sub-form:
Private Sub CabAppDate_AfterUpdate()
Forms![ProgramMovements].LatestAIPDate = Me.CabAppDate
End Sub
I want to use a pop-up calendar which users can enter the date with, and I’ve downloaded a sample module/form from a website. The calendar works ok (ie, it pops up and allows users to enter the date), but if they enter the date through the calendar, it now doesn’t update the ‘latest’ date on the main form. I’m very new to Access, so hopefully someone can help!
Cheers,
Jason