Hello. Using VB6, how can I check to see if a user has Outlook
currently open and running on their machine?
Thank you!
Sincerely,
Mark
Dim oOL As Outlook.Application
On Error Resume Next
Set oOL = GetObject(, "Outlook.Application")
If oOL Is Nothing Then 'Outlook not running yet
Err.Clear
Set oOL = CreateObject("Outlook.Application") 'start Outlook
End If

Signature
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm
> Hello. Using VB6, how can I check to see if a user has Outlook
> currently open and running on their machine?
>
> Thank you!
> Sincerely,
> Mark