Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Execute & Wait for VBA code

Status
Not open for further replies.

SimonFinn

Programmer
Mar 13, 2003
130
GB
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top