I am using the MS Calendar found on this site with Access 2013 on Windows 8.
I am working on adding a form that opens from a day block on the calendar.
The date is in the sub form.
I tried using these
I tried a few other combos as well.
I couldn't get it to work.
Is this possible?
Kisses are waiting for you on this one ADezii.
I am working on adding a form that opens from a day block on the calendar.
The date is in the sub form.
I tried using these
Code:
DoCmd.OpenForm "Forms![MainScheduleCourses]![SubScheduleCourses]", , , "[SessionDate] = #" & _
CDate(Me![txtDayBlock05].Tag) & "#"
Code:
DoCmd.OpenForm "MainScheduleCourses", , , "Forms![MainScheduleCourses]![SubScheduleCourses].Form.[SessionDate] = #" & _
CDate(Me![txtDayBlock05].Tag) & "#"
I couldn't get it to work.
Is this possible?
Kisses are waiting for you on this one ADezii.
Comment