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.
me.yoursubform.sourceobject[b]=[/b]"query name"
Sub Form_Open()
If DCount("[ID]", "your query name")>=1 Then
Me.RecordSource="your query name"
End If
End Sub
Sub yourbutton_click()
If DCount("[ID]", "your query name")>=1 Then
Me.YourSubform.RecordSource="Your Query"
Me.YourSubform.Visible=True
me.Repaint
End If
End Sub