Perhaps it is just paranoia, but....
I have an Access routine (Windows 10, Office 2016) which I have been running every month for several years.
The routine examines the contents of an Outlook mailbox and reads the contents of the mail items and copies the contents to an Excel spread sheet.
The relevant bit of the code is
This code has been working for years and I have not changed it recently.Code:Set appXL = CreateObject("Excel.Application") Set wb = appXL.Workbooks.Add Set ws = wb.Sheets("sheet1") ws.Select 'DoCmd.Hourglass (True) i = 1 For Each OutlookMail In TOPSFolder '@ Omitted @ ws.Cells(j, i) = TOPSLine Next i = i + 1 Next OutlookMail wb.SaveAs "C:\xxxxx & ".xlsx" wb.Close
So I was surprised when today I got "Compile Error: Method or data member not found" and the line
wb.SaveAs was iderntified as in error
If I tried to rewrite the line then neither Save nor SaveAs was offered in the intellisense pane??
As I had not changed anything my suspicions led to recent Windows updates.
I uninstalled KB5059379 and the routine worked again
So posting this as, perhaps, a warning to others.
:-)