Check to see if form is in “Filter in Place” mode

Jan 16th, 2011

Here is the way to check a form’s mode in script.

If Instr(1, ucase(ThisForm.Caption), “(FILTER IN PLACE)”) > 0  Then
ReturnValue = “-1”
Exit Sub
End If

No comments yet.
You must be logged in to post a comment.