HiI have a search form that opens with "filter by form", the problem is if no records
are returned the form goes blank, how do I get it to display a msgbox?. I've seen
some posts saying use "DCount"
If DCount ("*","QueryName")<= 0 then
MsgBox "No Records Match"
Exit Sub
End If
But since my...