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
Set db = DBEngine.OpenDatabase( _
"D:\db1.mdb", False, False, ";pwd=YourPassword")
Dim conn As ADODB.Connection
Set conn = New ADODB.Connection
With conn
.CursorLocation = adUseClient
.Provider = "Microsoft.Jet.OLEDB.4.0"
.Properties("Data Source") = "d:\db1.mdb"
.Properties("Jet OLEDB:Database Password") = "YourPassword"
.Open
End With
Dim rst As Recordset
Set rst = conn.Execute("Select * From Argus2000")