View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Dave Patrick Dave Patrick is offline
external usenet poster
 
Posts: 249
Default Late Binding with Outlook

Shouldn't that be?

Set OutApp = CreateObject("Outlook.Application")

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"matelot" wrote:
|I am trying to setup so I don't have to select the library in
| Tools/references. I get "Run-time error 429: ActiveX component can't
create
| object". Isn't that correct to setup for a late binding?
|
| Dim OutApp As Object
| Dim OutMail As Object
|
| Set OutApp = CreateObject("Object.Application")
| Set OutMail = CreateObject("Outlook.MailItem")
|
| Thanks