Outlook.Application handles Quit
Hi there,
I got this code below from my COM add-in which handles the Quit on my
outlook Application but it never get fired why is this? and how can i
fix this?
Thankls
Donald
Public WithEvents _Application As Outlook.Application
Private Sub app_quit() Handles _Application.Quit
MsgBox(_Application.Inspectors.Count)
MsgBox(_Application.Explorers.Count)
End Sub
|