I have an excel application that runs 24/24. During the day, there is a cycle that is run every 10 minutes. After that cycle, it is saved with the save command. For several weeks now, when saving, we have been getting a message on the screen every now and then saying that the file does not exist or has been moved. This message obviously blocks the operation of the cycles. I've already tried turning off Application.DisplayAlerts before saving, but that doesn't help.
Current code for saving:
Anyone have any idea why we are getting this notification?
Current code for saving:
VBA Code:
Application.DisplayAlerts = False
If Dir(Wb.FullName) <> "" Then
Wb.Save
End If
Application.DisplayAlerts = True
Anyone have any idea why we are getting this notification?