joemajestee
Programmer
Hi there.
Is there a way to make Outlook go into offline mode via VBA?
Background:
I'm sending stuff via Outlook from Excel using
I want to check if Outlook is online and set it to offline if online.
That allows user to scroll through a few in outlook outbox to verify the emails are as expected before sending.
Win 7, Office 2010
Thanks
Is there a way to make Outlook go into offline mode via VBA?
Background:
I'm sending stuff via Outlook from Excel using
Code:
Dim OutApp As Object, OutMail As Object
Set OutApp = CreateObject("Outlook.Application")
...
I want to check if Outlook is online and set it to offline if online.
That allows user to scroll through a few in outlook outbox to verify the emails are as expected before sending.
Win 7, Office 2010
Thanks