Hi
I want to execute some VBA code from an ASP Page, i am using this line of code to execute it:
Set objAccess = Server.CreateObject("Access.Application"
objAccess.Visible = False
objAccess.OpenCurrentDatabaseServer.MapPath(strDbName)
Set objDB = objAccess.CurrentDb()
objDB.Run ("ASP_SkillSearch", "tblCandidate", oUpload.Form("firstname"
, oUpload.Form("surname"
)
But i want to display a Progress bar or just a please wait page whilst the code runs.
How would i do this?
Thanks Si
I want to execute some VBA code from an ASP Page, i am using this line of code to execute it:
Set objAccess = Server.CreateObject("Access.Application"
objAccess.Visible = False
objAccess.OpenCurrentDatabaseServer.MapPath(strDbName)
Set objDB = objAccess.CurrentDb()
objDB.Run ("ASP_SkillSearch", "tblCandidate", oUpload.Form("firstname"
But i want to display a Progress bar or just a please wait page whilst the code runs.
How would i do this?
Thanks Si