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.

[email protected]