willyboy58
Technical User
I have the following code:
Sub OpenReportMonthWorkbook()
Workbooks.Open Filename:="Prop1-" & ReportMonth & ".xls"
ActiveWorkbook.LinkSources (xlOLELinks)
With ActiveWorkbook
.UpdateLink .LinkSources = True
End With
Sheets("InvoicePage2"
.Select
End Sub
It works except that I do not want the message box with the "Update links...." message box popping up and asking me if I want to update the links or not. How do I hide the message box and still make the update? I'm sure the visible property is involved, but what is the name of the box?
TIA
Sub OpenReportMonthWorkbook()
Workbooks.Open Filename:="Prop1-" & ReportMonth & ".xls"
ActiveWorkbook.LinkSources (xlOLELinks)
With ActiveWorkbook
.UpdateLink .LinkSources = True
End With
Sheets("InvoicePage2"
End Sub
It works except that I do not want the message box with the "Update links...." message box popping up and asking me if I want to update the links or not. How do I hide the message box and still make the update? I'm sure the visible property is involved, but what is the name of the box?
TIA