ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Avoid displayalert message while opening file (https://www.excelbanter.com/excel-programming/404995-avoid-displayalert-message-while-opening-file.html)

Vijay Kotian

Avoid displayalert message while opening file
 
I am opening a file containing links to other data source, when i open file
it always ask for Update links. It flashes a message on the screen, to avoid
flashing on the screen or to Update links by default I tried to use command
"application.displayalert = False".

Eventhough this command is given it continues to flash the message. Can
anyone help me out to avoid this message repeating everytime opening the file.

Trevor Williams

Avoid displayalert message while opening file
 
Hi Vijay

Change the Links Startup Prompt:

Within the workbook click on Edit | Links | Startup Prompt
and make your choice.

Trevor

"Vijay Kotian" wrote:

I am opening a file containing links to other data source, when i open file
it always ask for Update links. It flashes a message on the screen, to avoid
flashing on the screen or to Update links by default I tried to use command
"application.displayalert = False".

Eventhough this command is given it continues to flash the message. Can
anyone help me out to avoid this message repeating everytime opening the file.


Trevor Williams

Avoid displayalert message while opening file
 
Hi Shawn

You could try adding this into the Workbook module;

Private Sub Workbook_Open()
Me.UpdateLinks = xlUpdateLinksAlways
End Sub

OR

Create an Auto Open procedure in a standard module:
(this will run automatically when the workbook is opened)

Sub Auto_Open()
ActiveWorkbook.UpdateLinks = xlUpdateLinksAlways
End Sub

HTH
Trevor


"Shawn" wrote:

Is there a way to put this in the macro code where the person on the other
end trying to open up a workbook that I have generated via macro will not
have to set up their excel for this?

"Trevor Williams" wrote:

Hi Vijay

Change the Links Startup Prompt:

Within the workbook click on Edit | Links | Startup Prompt
and make your choice.

Trevor

"Vijay Kotian" wrote:

I am opening a file containing links to other data source, when i open file
it always ask for Update links. It flashes a message on the screen, to avoid
flashing on the screen or to Update links by default I tried to use command
"application.displayalert = False".

Eventhough this command is given it continues to flash the message. Can
anyone help me out to avoid this message repeating everytime opening the file.



All times are GMT +1. The time now is 07:49 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com