I have a Macro in Outlook to record an email into an Excel spread sheet whenever that email is moved into a certain folder. So I declared a variable (oXLwb) for the workbook object at the module level, set it to open a certain workbook (Set oXLwb = oXLApp.Workbooks.Open(".......speak.xlsx")), and it works fine from then on, i.e. emails are recorded in the spreadsheet correctly.
The run-time error '91' happens when exiting Outlook triggers event handler application_quit where the workbook is closed (oXLwb.Close True).
Below is the complete code:
'''''''start of the code
Const xlUp As Long = -4162
Private WithEvents dsc340speakItems As Outlook.Items
Private WithEvents dsc335speakItems As Outlook.Items
Private oXLApp As Object
Private oXLwb As Object
Private Sub Application_Startup()
Dim olNS As Outlook.NameSpace
Set olNS = Application.GetNamespace("MAPI")
Set dsc340speakItems = olNS.GetDefaultFolder(olFolderInbox).Folders("340").Folders("Speak").Items
Set dsc335speakItems = olNS.GetDefaultFolder(olFolderInbox).Folders("335").Folders("Speak").Items
''''''' Establish an Excel application Object
On Error Resume Next
Set oXLApp = GetObject(, "Excel.Application")
''''''' Show Excel
oXLApp.Visible = True
''''''' If not found, create a new instance
If Err.Number <> 0 Then
Set oXLApp = CreateObject("Excel.Application")
End If
Err.Clear
On Error GoTo 0
'~~> Open the relevant file
MsgBox ("done")
Set oXLwb = oXLApp.Workbooks.Open("C:\Users\...\SkyDrive\speak.xlsx")
End Sub
Private Sub dsc340speakItems_ItemAdd(ByVal item As Object)
Call ProcessEmails("340", item)
End Sub
Private Sub dsc335speakItems_ItemAdd(ByVal item As Object)
Call ProcessEmails("335", item)
End Sub
Sub ProcessEmails(ByVal ClassNbr As String, ByVal newItem As MailItem)
'''''bunch of codes to do things
oXLwb.Save
End Sub
Private Sub CleanUpExcel()
' Close and Clean up Excel
oXLwb.Close True
oXLApp.Quit
End Sub
Private Sub Application_Quit()
Call CleanUpExcel
Set oXLwb = Nothing
Set oXLApp = Nothing
End Sub
oXLwb.Close Trueto check if oXLwb is nothing. – Larry Jan 23 at 2:30If oXLApp = Nothingbefore trying to use the quit method on that, too. – mkingston Jan 23 at 2:59If oXLwb Is NothingandIf oXLApp Is Nothingand that got rid of the run-time error. But the Excel app and the workbook are not closed (I can see it running from task manager). What made me scratch my head is how I lost the reference those two global variables are associated with. I just can't see how they can become null (out of context/scope) if they are global at the module level. – user2002094 Jan 24 at 8:03ProcessEmails, before end sub it's still ok .. then it's gone? Can you moveoXLApp.Visible = TrueDownward to make it visible for both case? – Larry Jan 24 at 8:36