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...
I have tried doing the same thing for Outlook but there is not a Visible property! Does anyone know what I should do?
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?