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.
db_path = "c:\directory\access_db.mdb"
Set objConnection = CreateObject("ADODB.Connection")
objConnection.Open _
"Provider = Microsoft.Jet.OLEDB.4.0; " & _
"Data Source = " & db_path
commandstring = "SELECT * INTO [Excel 8.0;HDR=Yes;" & _
"Database=c:\where\excel\file\should_go\ &
excel_name & ".xls].Sheet1 FROM " & tbl_name
objConnection.Execute commandstring