cactus1000
Programmer
I have an Access database with many forms, macros etc. It's purpose is to automate the creation of mail merge files by letting users pick names of recipients from the table and send the data to a mertge file.
I have been asked to make this database available online. In other words, I need to have all the functions of the database replicated on the web (yet still use the Access database).
Is there a reliable way to run Access macros from ASP? I've tried various suggestions like the following:
Set objAccess = Server.CreateObject("Access.Application"
objAccess.Visible = False
objAccess.OpenCurrentDatabase Server.MapPath(testdb.mdb)
Set objDB = objAccess.CurrentDb()
objDB.DoCmd.RunMacro macro1
When I execute this code (from a command button)nothing hapens. Not even an error message.
Does anyone have any suggestions?
I have been asked to make this database available online. In other words, I need to have all the functions of the database replicated on the web (yet still use the Access database).
Is there a reliable way to run Access macros from ASP? I've tried various suggestions like the following:
Set objAccess = Server.CreateObject("Access.Application"
objAccess.Visible = False
objAccess.OpenCurrentDatabase Server.MapPath(testdb.mdb)
Set objDB = objAccess.CurrentDb()
objDB.DoCmd.RunMacro macro1
When I execute this code (from a command button)nothing hapens. Not even an error message.
Does anyone have any suggestions?