I have a form on which I have a little pop-up calendar which once clicked updates a date field on a screen.
I have an After_Update event for this date field, the problem is that even though the date field gets updated with a date selected from a calendar, the After_Update event isn’t triggered, but if I go and change the date without using the pop-up calendar, it works just fine.
Any ideas on how I can make it work with the pop-up calendar?
Thanks.
Here is code for my on-Click even for the calendar pop-up:
Dim strArguments As String
strArguments = Me.Name & ";End1"
DoCmd.OpenForm "frmCalendar", , , , , acDialog, strArguments
I have an After_Update event for this date field, the problem is that even though the date field gets updated with a date selected from a calendar, the After_Update event isn’t triggered, but if I go and change the date without using the pop-up calendar, it works just fine.
Any ideas on how I can make it work with the pop-up calendar?
Thanks.
Here is code for my on-Click even for the calendar pop-up:
Dim strArguments As String
strArguments = Me.Name & ";End1"
DoCmd.OpenForm "frmCalendar", , , , , acDialog, strArguments