Quit event code - 2007

Status
Not open for further replies.
Outlook version
Outlook 2016 64 bit
Email Account
Exchange Server
Thanks for the incredible help I've received here, usually lurking through the years of great stuff here. Here's something that I expect will be easy but I'm floundering. If it's not simple, it's okay, this is not really important to me.

I want to intercept Outlook shutdown if there are windows open (emails, reminders) and challenge myself with a yes/no whether to indeed shutdown, like it does when you have "semi-deleted" items, or items that have changed since opening (and emails that have an attachment open, so it prompts you before closing the email). Maybe I'll have a yes/no/cancel msgbox for each active window found, stating its .Name. So I started off in ThisOutlookSession with

Dim olApp As Outlook.Application

Private Sub Application_Quit()
Dim olItems As Outlook.Items, olItem As Object, i As Integer

For Each olItem In olItems 'breakpoint on this line
Next

End Sub

thinking maybe what I really want is

for each Explorer in olApp

or

for each Window in olApp

However the breakpoint in the Quit event only flashes for a second, and then Outlook closes anyway.

1. I request to close OL07 with File/Exit

2. It asks whether to permanently delete Deleted Items

3. I click yes

4. The breakpoint line lights up as though I'll get debug control over execution.

5. A half a second later Outlook disappears and OUTLLOOK.EXE disappears from XP task list.

A. Is Application_Quit() the place to do this?

B. Is there a "collection" of open windows that I can For Each?

C. Can I stop the Quit even? I don't see a "Cancel" boolean, for one thing!
 
Thanks, but no good. The MS article actually describes exactly what I'm doing, but even does so incorrectly (it goes in ThisOutlookSession, not a class module). Oh, well, no biggie.
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
K Handling application.quit event Outlook VBA and Custom Forms 8
C Outlook email progress window will not quit Using Outlook 1
M Search quit Using Outlook 1
J [outlook-users] outlook 2007 Sp2: Error message to quit outlook Using Outlook 9
S Send All emails in Outbox and Quit using VBA Outlook VBA and Custom Forms 3
R Help, Outlook2003 won't quit after call OnDisconnection? Outlook VBA and Custom Forms 3
R Outlook wont .quit Outlook VBA and Custom Forms 4
J Calendar events created on iPhone automatically changing default alert from 'None' to 'Time of Event' Using Outlook.com accounts in Outlook 0
T How to get an EVENT COLOR option in Outlook 2021 ? Using Outlook 0
J Cannot edit a calendar event received as an invitation Using Outlook 2
T Event Error on non existent Event. Using Outlook 2
J Event/Meeting in Outlook Does Not Align with SharePoint Calendar Using Outlook 5
P Calendar Day View only shows 1 all day event Using Outlook 0
G Event when creating task from mailitem Outlook VBA and Custom Forms 2
diver864 vba for a rule to automatically accept meeting requests with 'vacation' in subject, change to all-day event, change to free, don't send reply Outlook VBA and Custom Forms 1
J Outlook 2010 Outlook/Win7 Client logging Event ID 36887 Using Outlook 0
K Recurring all day annual event Using Outlook 3
P Restore an individual all-day recurring event Using Outlook 2
K VBA BeforeItemMove event create rule to always move to its folder. Outlook VBA and Custom Forms 4
K Working with Explorer.Close event Outlook VBA and Custom Forms 3
F Outlook 2016 call to Stop Timer Event Outlook VBA and Custom Forms 4
D Event ID issues Exchange Server Administration 2
J ItemChange event Outlook VBA and Custom Forms 11
T Outlook 2016 Calendar multiday event display Using Outlook 4
oliv- Treat once an email with the ItemAdd event in a shared mailbox Outlook VBA and Custom Forms 2
M Automatically create event in calendar when task is created Outlook VBA and Custom Forms 1
A UID field in iCal files - unique per-event or per-user or both? Using Outlook 2
D help with Item/Inspector close event Outlook VBA and Custom Forms 1
B on flag message event - create task Outlook VBA and Custom Forms 22
Diane Poremsky Change the All Day Event Default Free/Busy to "Busy" Using Outlook 3
C Calendar - Centering an event in Outlook? Using Outlook 1
J Outlook calendar...How to add an event or appointment without a border around it? Using Outlook 9
J Create Calendar Alert Event form Mail Subject line? Using Outlook 4
S Item Add Event fires intermittently Outlook VBA and Custom Forms 3
R Why is a meeting organizer me and not the creator of the event? Using Outlook 1
V Calendar event acting odd Using Outlook 7
G Capture "forward event" ? Outlook VBA and Custom Forms 11
P Change the Outlook.com "from" address for calendar event invites Using Outlook 9
20 Ton Squirrel Detect Application_Startup event completion Outlook VBA and Custom Forms 1
L Outlook 2007 All Day Event Using Outlook 27
I Event listener for deleted items Using Outlook 6
M Save Attachments Event? Using Outlook 0
Commodore Calendar Folder property is missing - Event 27 Using Outlook 11
J Capturing forward event when multiple items are selected Using Outlook 0
P Trying to get 'Calendar Name' to appear like 'Subject' and 'Location' in event Using Outlook 0
G What event happens when you open 2 copies of your inbox? Using Outlook 5
D Adding a participant automatically to a calendar event Using Outlook 1
H Changing Organizer of event (for single to total calendar move; long way ) Exchange Server Administration 4
N Combobox in outlook add ons toolbar not firing event on main window resized Using Outlook 3
D Extracting Location info from All Day Event in mailboxes into webpage Exchange Server Administration 3

Similar threads

Back
Top