Hi,
Recently I had VBA code that I had used for years to encounter errors. I narrowed it down to the creation of objects.
This no longer works and gives a 429 or a 438 error:
Dim OlApp As Outlook.Application
Set OlApp = CreateObject("Outlook.Application")
This works:
Dim OlApp As Outlook.Application
Set OlApp = New Outlook.Application
So New works and CreateObject does not. Other people using this code can still run it using CreateObject.
We are all using Windows 10 and Office 365
Thanks,
tcaylor
Bookmarks