Page 2 of 2 FirstFirst 12
Results 16 to 20 of 20
  1. #16
    adaoluz is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2017
    Posts
    46
    Hello Friend!




    sorry for not having passed the due details regarding my problem


    I have a form "Ordservico", in which I register the service orders, when it opens it and do not register anything, I leave the form "Ordservico", it keeps running the hourglass of the mouse, as if it had executed some task, then this is my doubt If you can, thank you.

  2. #17
    adaoluz is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2017
    Posts
    46
    Hello, I understand!


    I appreciate the help of all of you.

  3. #18
    Micron is online now Virtually Inert Person
    Windows 10 Access 2016
    Join Date
    Jun 2014
    Location
    Ontario, Canada
    Posts
    12,737
    OK, I think I figured it out. You're seeing the effect of your code being in a continuous loop that you can't get out of easily.
    Your formMenu has a timer event of 50, which is milliseconds. 1000 is one second, so this code is running every 0.050 second (I think):
    Code:
    If Not IsNull(DLookup("[data]", "cons_alarme")) Then
       DoCmd.SetWarnings False
       DoCmd.OpenForm "ALARMES"
       DoCmd.OpenQuery "CONS_ALARME_DES"
       DoCmd.SetWarnings True
    End If
    When you fix the timer duration values in code, it still may not run without errors - at least it didn't for me.
    So much for my earlier comments...

  4. #19
    adaoluz is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2017
    Posts
    46
    Ok friend, I'll test thank you!

  5. #20
    adaoluz is offline Advanced Beginner
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2017
    Posts
    46
    Hello Friend!


    I want to thank everyone, I was able to solve my problem.


    thanks to the precious tips from all of you, thank you very much.

Page 2 of 2 FirstFirst 12
Please reply to this thread with any new information or opinions.

Similar Threads

  1. Mouse Move Event - End if Mouse not Hovering
    By Tandem in forum Programming
    Replies: 3
    Last Post: 05-24-2016, 12:38 PM
  2. Loading A Form
    By Robert2150 in forum Access
    Replies: 5
    Last Post: 06-24-2015, 01:38 PM
  3. switchboard not loading form
    By Sheba in forum Forms
    Replies: 2
    Last Post: 10-02-2014, 12:26 PM
  4. Pop Up on Mouse Over in Form
    By Comiccradle in forum Forms
    Replies: 1
    Last Post: 08-13-2014, 05:11 AM
  5. Mouse click to open form
    By darryl.charles in forum Programming
    Replies: 0
    Last Post: 09-05-2008, 10:33 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums