noboffinme
Registered User.
- Local time
- Tomorrow, 01:04
- Joined
- Nov 28, 2007
- Messages
- 288
Hi
I need to run a couple of small procedures to update numeric values on a form.
I don't want the users to see a flicker of an Hourglass while it does this.
I've checked on some syntax like the below, but the Icons keep appearing.
Here's a code example;
Private Sub Question_Click()
DoCmd.Hourglass False
Forms!frm_main.Question_No = Me.Question_No
Forms!frm_main.main_question_id = Me.Question_ID
Here are some examples I have found;
DoCmd.HourGlass False
DoCmd.HourGlass(0)
I still see a flicker of the Hourglass as it runs though. & I need it to stay as a the normal cursor icon.
I need to run a couple of small procedures to update numeric values on a form.
I don't want the users to see a flicker of an Hourglass while it does this.
I've checked on some syntax like the below, but the Icons keep appearing.
Here's a code example;
Private Sub Question_Click()
DoCmd.Hourglass False
Forms!frm_main.Question_No = Me.Question_No
Forms!frm_main.main_question_id = Me.Question_ID
Here are some examples I have found;
DoCmd.HourGlass False
DoCmd.HourGlass(0)
I still see a flicker of the Hourglass as it runs though. & I need it to stay as a the normal cursor icon.