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 myDatabase As Database
Dim myRecordset As Recordset
Set myDatabase = OpenDatabase("D:\My Documents\db1.mdb")
Set myRecordset = myDatabase.OpenRecordset("Table1")
' And away you go ... until you're done, then ...
myRecordset.Close
myDatabase.Close
Set myRecordset = Nothing
Set myDatabase = Nothing