pullingteeth
Programmer
Hi, I choose to give my users a msgbox rather than a blank report when there is no data. On all but one of my reports, adding the following (or similar) to the report's events works fine. However, on the one particular report, this following is not triggered, and the report shows up with no data. The code's below...any suggestions for debugging?
Thanks!
Code:
Private Sub Report_NoData(Cancel As Integer)
Cancel = True
MsgBox "There were zero results to your search", vbInformation
End Sub
Thanks!