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.
With Data1.Recordset
.FindFirst "BookName = 'Moby Dick'"
If .NoMatch then MsgBox "Book does not exist."
End With
With Data1.Recordset
.FindFirst "BookName = '" & txtSearch.Text & "'"
If .NoMatch then MsgBox txtSearch.Text & " does not exist."
End With