How to Create a Shortcut directly to the Trust Center
I've been asked by the head of my agency to create shortcuts for legal directly to the Trust Center. A quick access link directly to the "Options" was not acceptable. I wanted to check and see if anyone knows if this is possible. I can not find the "Trust
Center" in this list.
Is there anyway to create a direct link into the Trust Center. (Desktop shortcut, or Office shortcut)
Sub OpenTrustCenter()
With Dialogs(wdDialogToolsOptions)
SendKeys "t%t"
.Show
End With
End Sub
If you want the dialog to open to a particular page other than the default Macro Settings, you can add more letters to the end of the SendKeys string; for example, to open at the Privacy Settings page, use
SendKeys "t%tpp"
because Privacy Settings is the second item in the left-hand list that begins with P.