P
Pizza
Hello there. i am trying to create a Reminder pop-up on the on open function
of a form. I was using the following:
Dim stDocName As String
Dim stLinkCriteria As String
DoCmd.Maximize
stDocName = "Reminder"
stLinkCriteria = "[Forensic Investigator]=" & "'" & Me![Text24] & "'"
stLinkCriteria = "[Date]=" & "#" & Me![Text15] & "#"
DoCmd.OpenForm stDocName, , , stLinkCriteria
I have two sets of criteria that has to belinked before the pop-up Reminder
opens. If i do it this way as above: only the last stLinkCriteria applies. Is
there anyway that i can combine the two????
of a form. I was using the following:
Dim stDocName As String
Dim stLinkCriteria As String
DoCmd.Maximize
stDocName = "Reminder"
stLinkCriteria = "[Forensic Investigator]=" & "'" & Me![Text24] & "'"
stLinkCriteria = "[Date]=" & "#" & Me![Text15] & "#"
DoCmd.OpenForm stDocName, , , stLinkCriteria
I have two sets of criteria that has to belinked before the pop-up Reminder
opens. If i do it this way as above: only the last stLinkCriteria applies. Is
there anyway that i can combine the two????