Recent content by KACJR

  1. K

    Solved Performance Issues

    I can confirm that today's O365 update resolved the slowness issue. Thank you all for your assistance.
  2. K

    Solved Performance Issues

    Thank you all for your responses; they were most helpful. Dropping O365 back one rev level fixed the problem! Looking forward to Tuesday updates. Hopefully they really did fix the issue.
  3. K

    Solved Performance Issues

    Office 365 apps updated on their own when we added the new PCs to Intune.
  4. K

    Solved Performance Issues

    Yeah, I did do that. Nothing that screams out at me.
  5. K

    Solved Performance Issues

    Can't be done. It's been rolled out organization-wide. We don't use Wifi within our building. 2Gb ethernet service.
  6. K

    Solved Performance Issues

    Interesting you should mention this. Every other launch of Access never gets to the splash screen. I have to go into Task Manager and end the MS Access task. The next launch is normal.
  7. K

    Solved Performance Issues

    Microsoft® Access® for Microsoft 365 MSO (Version 2408 Build 16.0.17928.20114) 64-bit
  8. K

    Solved Performance Issues

    You guys are the best! Digging into research now!
  9. K

    Solved Performance Issues

    I come again to the well of knowledge... My shop uses a number of Access front-ends. All are connected to various DB instances on a SQL Server. They have been running pretty much faithfully for 10 years. Over the past couple of weeks, though, response time on all of the front-ends has been...
  10. K

    Yet another "Item not found in this collection" post

    In eleven years, this has never happened. But I will take your suggestion under advisement. Yes, the Dim state is DAO.Database; I just didn't spell it all out.
  11. K

    Yet another "Item not found in this collection" post

    OK, following your suggestions, I learned that the TILLDatabase variable is, in fact, Nothing. Somewhere in the midst of processing, TILLDatabase lost its value. Now I need to trace where this happened because it definitely should not be. The only place where I explicitly set it to Nothing is...
  12. K

    Yet another "Item not found in this collection" post

    It is. It's a Public Dim It's used in multiple Subs and Functions throughout my app.
  13. K

    Yet another "Item not found in this collection" post

    Dim TILLDatabase as Database
  14. K

    Yet another "Item not found in this collection" post

    I put the breakpoint at the beginning of the sub. The error got thrown when I stepped into the DELETE statement.
  15. K

    Yet another "Item not found in this collection" post

    Private Sub PhoneBook_Click() On Error GoTo ShowMeError ProgressMessages = ProgressMessages & "Updating Phone Directory." & vbCrLf: ProgressMessages.Requery TILLDataBase.Execute "DELETE tblPhoneDirectory.* from tblPhoneDirectory;", dbSeeChanges TILLDataBase.Execute "INSERT INTO...
Back
Top Bottom