Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

creating a outlook express object

Status
Not open for further replies.

collierd

MIS
Dec 19, 2001
509
DE
Hello

I can use the following code to create a outlook object:

Code:
    Dim objOutlk
    Dim objMail

    Set objOutlk = createobject("Outlook.Application")
    Set objMail = objOutlk.createitem(0)

How would I create a outlook express object
This doesn't seem to work
It returns:

ActiveX component can't create object 'Outlook.Application'

Thanks

Damian.
 
OE does not expose an automation interface. It is unlikely it ever will because of the way the press likes to bash Microsoft about the exploits hackish types have developed that work with existing OE capabilities.

Thanks hackers. Thanks a lot. Thanks for making us need to cripple our tools just because you don't have a life.

;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top