Making Outlook Visible

  • Thread starter Thread starter Neil Penn
  • Start date Start date
N

Neil Penn

How do you make Outlook visible when it is opened via a
CreateObject("Outlook.Application") call?

I've been trying "IsPaneVisible" and
ActiveExplorer.Display/ActiveInspector.Display but with no success.
 
There is a display option in the Folders object in the eg. below.
Set myOlApp = CreateObject("Outlook.Application")
Set myNameSpace = myOlApp.GetNameSpace("MAPI")
Set myFolder= myNameSpace.GetDefaultFolder(olFolderInbox)
myFolder.DisplayBTW: This example is straight out of help.

HTH.

Paul.
 
Back
Top