Visible property for MS Outlook?

jjjamie

Freshman
Joined
Aug 30, 2002
Messages
34
Location
England
Does anyone know a way that I can make Outlook's main screen visible through automation? I can do it for Word by setting the application's visible property to True. Here's the code that I use to make Word visible...

Visual Basic:
Dim oWord As Word.ApplicationClass

oWord = CreateObject("Word.Application")
oWord.Visible = True
oWord.Activate()

I have tried doing the same thing for Outlook but there is not a Visible property! Does anyone know what I should do?
 
Back
Top