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 db As Database
Dim rst As Recordset
Set db = Workspaces(0).OpenDatabase("accessdb.mdb")
Set rst = db.OpenRecordset("mytable", dbOpenDynaset)
rst.AddNew
' Do your thing here
rst.Update
rst.Close
db.Close
set rst = Nothing
set db = Nothing