Progess Bar

A

Anthony Viscomi

I have the following portion or code that runs a number of Update Queries
and I would like to give the user(s) something visual (i.e. Progess Bar)
while the queries are running.

Function Update_XLS()
Dim dbCurr As DAO.Database
Dim qryCurr As DAO.QueryDef

Set dbCurr = CurrentDb()
For Each qryCurr In dbCurr.QueryDefs
With qryCurr
If Right$(.Name, 4) = "_XLS" Then
.Execute dbFailOnError

End If
End With
Next qryCurr

Set dbCurr = Nothing

I know that Access has an AcitiveX Contol, but I am clueless on how to
implement it.

Thanks
Anthony
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top