I have a VBA file that I've distributed to my coworkers and when my coworkers open Outlook, they get a run-time error 13 on the "Set olRingsInboxItems" line. It works fine on my computer, so I'm at a complete loss.
The following code is ThisOutlookSession:
Option Explicit
Private WithEvents olRingsInboxItems As Outlook.Items
Private Sub Application_Startup()
Dim oNameSpace As NameSpace
Set oNameSpace = Application.GetNamespace("MAPI")
Set olRingsInboxItems = oNameSpace.Folders("Rings").Folders("Inbox").Items
End Sub