Home > Development, SQL, VB .Net > Check to see if form is in “Filter in Place” mode

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

January 16th, 2011 Leave a comment Go to comments

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

Categories: Development, SQL, VB .Net Tags: ,
  1. No comments yet.
  1. No trackbacks yet.
You must be logged in to post a comment.