Click to See Complete Forum and Search --> : Automatic Hourglass for DAO queries


October 13th, 1999, 11:05 AM
Does anyone know if there is a way to have an hourglass to show automatically whenever an application is executing a DAO database query. The normal way is to do something like:

docmd.Hourglass true
Set rst = CurrentDb().OpenRecordset(strSQL)
docmd.Hourglass false

I would simply like to

Set rst = CurrentDb().OpenRecordset(strSQL)

without explicitly turning the hourglass on or off.

kevinr@imagis-cascade.com