Suppress link update warning using VB?

Audiology

Board Regular
Joined
Mar 4, 2009
Messages
171
I have created an Excel app for teachers to score short vowel proficiency in reading and spelling of third grade students.

I have a second app that allows the user to create a test report custom header for their specific school appearing on each child's report.

Both apps are packaged on an installation CD. When unpacked, the scoring app presents a persistent MS Link Enable Warning pop-up.

As a temporary fix, I have added an instruction in the test user's manual to clear the "Ask to update automatic links" pop-up option in their own version of Excel.

Is there way to achieve the same specific warning suppression by adding VB code to the parent app?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
See if this code helps at all.

Code:
Sub turn_alerts_off()
Application.DisplayAlerts = Falsse
End Sub
 
Upvote 0
Dermie,

Thanks. I had just tried this

(Application.DisplayAlerts = False)

based on an earlier post with no luck on link update popup suppression.

Since I posted this q. I found this post which makes me believe that the only way to address the issue is by changing the generic Excel advanced option on an individual user basis.

http://www.mrexcel.com/forum/excel-questions/45793-private-sub-workbook-open.html
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,806
Messages
6,121,672
Members
449,045
Latest member
Marcus05

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top