Hi Gurus!

I have a small problem. It concerns Outlook Express. For the moment I've an app that starts Microsoft Outlook an attachs a file in the following way.

Dim outlook As Object
Dim objoutlookmsg As Object

Set objOutlook = CreateObject("Outlook.Application")
Set objoutlookmsg = objOutlook.CreateItem(0)
With objoutlookmsg
.To = Emailstr
.Subject = "Hers is the requested File"
.Attachments.Add (FilePath)
.Display
End With


It was said that the Application only should deal with Microsoft Outlook. That would never change.

SURPRISE !!! Yesterday my Boss came down and told me that we have a Customer and is it maybe possible to......

My question is: Is it possible to start Outlook Express in a similar manner as Microsoft Outlook ? And how do I determine which one of Outlook Express and Microsoft Outlook that is the default ?

I've search this forum but haven't found a similar way.

Thanks in advance