Check to see if form is in “Filter in Place” mode
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
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
Recent Comments