Search results

  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...
  16. K

    Yet another "Item not found in this collection" post

    This is an SQL statement executed within a VBA module. This statement has been executing without fail forever. It just started doing this today. I could understand if this happened because of a missing field, but a DELETE statement??
  17. K

    Yet another "Item not found in this collection" post

    I come again to the Well of Knowledge... I have dealt with and resolved "Item not found in this collection" errors before. This is a new on me because it happens when the SQL statement "DELETE tbl.* from tbl" command. What would cause this on something as simple as a DELETE statement...
  18. K

    Corrupt Query

    The DB has been compacted, repaired, then uncompiled and recompiled. Yes, everyone has their own copy of the front-end. I uninstalled and reinstalled Access Runtime 2016...no love. I even uninstalled Runtime and installed full Access 2016...still no love. I'm completely baffled.
  19. K

    Corrupt Query

    This doesn't seem to be relevant. We're running Access 2016 (and 2016 runtime), legacy installation (not click-to-run), we are not a 365 shop. Our Access 2016 is fully patched.
  20. K

    Corrupt Query

    Greetings to the well of knowledge... Posting this as a general question as I really don't think I'm dealing with a true corrupt query. I have an Access front-end to a back-end SQL Server DB. I make periodic updates to the front-end, on about an every-two-weeks basis. After the most recent...
Back
Top Bottom