I'm using late binding to create Outlook email from an Access2K
database. I am not referencing the Microsoft Office 9.0 Object Library
nor the Microsoft Outlook 9.0 Object Library. Instead, I have used the
late binding code:
Dim objOutlook as object
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookMsg = objOutlook.CreateItem(0)
etc...
I have developed it on a machine running Office 2000 and tested it on
a machine running Office 2003. Works fine for me.
However, other users are reporting: Error: 429 ActiveX component can't
create object.
Does anyone have experience with this and a solution?