Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
dim strFilter as String
If Not IsNull(Me.cboField) and _
Not IsNull(Me.txtSearch) Then
strFilter = "[" & Me.cboField & "] = """ & _
me.txtSearch & """""
Me.Filter = strFilter
Me.FilterOn = True
Else
Me.FilterOn = False
End If