I have a welcome form that closes on a timer event and then opens another form, prior to opening the form it has to run a very slow query.
I would like to change the mouse or stick up a message whilst loading but cannot get anything to trigger right. For example:
Changes to an hourglass once the form has loaded.
Any suggestions would be greatly appreciated.
Code:
Private Sub Form_Timer()
DoCmd.Close
DoCmd.OpenForm "Scan Data", acNormal, "", "", , acNormal
Code:
Private Sub Form_Timer()
DoCmd.Close
DoCmd.HourGlass True
DoCmd.OpenForm "Scan Data", acNormal, "", "", , acNormal
Any suggestions would be greatly appreciated.