Results 1 to 11 of 11
  1. #1
    Tenmakk is offline Advanced Beginner
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2012
    Posts
    35

    Access hangs for at least 30 seconds when switching tabs if the Property sheet is open


    Does anyone know why this is happening how how I can fix it? The busy circle icon appears during this time. The only way for me to avoid this is to close the properties sheet each time I switch tabs. It's very inconvenient, especially when I forget to. This is slowing my progress to a crawl.

  2. #2
    aytee111 is offline Competent At Times
    Windows 10 Access 2013 64bit
    Join Date
    Nov 2011
    Location
    Nomad
    Posts
    3,936
    Do you have a timer event running in the background?

  3. #3
    John_G is offline VIP
    Windows 7 32bit Access 2010 32bit
    Join Date
    Oct 2011
    Location
    Ottawa, ON (area)
    Posts
    2,615
    Try closing all other running applications, especially web browsers. I have seen these take up a LOT of CPU time, depending on the website.

  4. #4
    Tenmakk is offline Advanced Beginner
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2012
    Posts
    35
    Quote Originally Posted by aytee111 View Post
    Do you have a timer event running in the background?
    Yes, I do have a timer that can be set to start from 30 to 900 seconds. And I set the countdown text box to: Me.txtTimeLeft.SetFocus.

    This is what I have:
    Code:
    Private Sub Form_Timer()
        timer = timer - 1 'countdown
        If timer > -1 Then Me.txtTimeLeft.Value = timer 'show the time in the textbox
        If timer = 0 Then
            '......put event here
            TimerInterval = 0 'stop the timer
            DoCmd.Beep
            MsgBox "time is up"
        End If
    End Sub
    Thanks.

  5. #5
    aytee111 is offline Competent At Times
    Windows 10 Access 2013 64bit
    Join Date
    Nov 2011
    Location
    Nomad
    Posts
    3,936
    That is what is causing your problem.

  6. #6
    Tenmakk is offline Advanced Beginner
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2012
    Posts
    35
    Can anyone answer how I can fix this? That's obviously why I'm here. Please don't give attitude, I don't have much experience with Access and what I can't do, I am asking for help. I know how negative people on message boards can be and would prefer no response to a sarcastic one. Please keep it positive.

    Thank you.

  7. #7
    aytee111 is offline Competent At Times
    Windows 10 Access 2013 64bit
    Join Date
    Nov 2011
    Location
    Nomad
    Posts
    3,936
    You have a choice - either put up with it or switch the timer off. That is not negative, it is the way it is.

  8. #8
    Tenmakk is offline Advanced Beginner
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2012
    Posts
    35
    There you go. Thank you for suggesting a way to deal with it, rather than just telling me my problem. I never said you were negative. But your post was unhelpful and perhaps a bit sarcastic.

  9. #9
    Tenmakk is offline Advanced Beginner
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2012
    Posts
    35
    Thought I would give an FYI to anyone having the same issue. This isn't the solution. Timer is NOT the problem. I'm still getting a prolonged busy wheel. Thank you for the tip about closing applications but that didn't fix it either. I'll go to a different forum for this one because I'm sure someone knows a solution for this.

  10. #10
    CJ_London is offline VIP
    Windows 10 Access 2010 32bit
    Join Date
    Mar 2015
    Posts
    11,411
    has your db been under development for a long time or had a lot of changes to the code? If it has, it is likely there is a lot of junk floating around in the background which may be causing the problem. Suggest you decompile - see this link http://www.fmsinc.com/microsoftacces.../decompile.asp and then compact and repair

  11. #11
    Tenmakk is offline Advanced Beginner
    Windows 7 64bit Access 2010 32bit
    Join Date
    Jun 2012
    Posts
    35
    Ah. It seems that John_G and you were right. I just had to restart my computer. Thank you both for helping.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 4
    Last Post: 07-20-2015, 07:11 AM
  2. Replies: 7
    Last Post: 09-21-2014, 11:32 AM
  3. Property sheet will not open
    By lawdy in forum Access
    Replies: 1
    Last Post: 02-04-2014, 09:26 PM
  4. My property Sheet dissapeared!!
    By Csalge in forum Access
    Replies: 1
    Last Post: 04-19-2013, 12:11 PM
  5. Replies: 1
    Last Post: 09-15-2010, 07:34 PM

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