outlook 2007 - custom buttoms with hyperlinks to oft files

  • Thread starter Thread starter Patrick
  • Start date Start date
P

Patrick

I have a customized toolbar with a bunch of buttoms which refer to oft files
by using a hyperlink to the file. This is also useb by my colleaugues.
Now, I migrated to outlook 2007 and this does not work anymore
I always need to confirm a message box saying

"Microsoft Office has identified a potential security concern."
"This location may be unsafe."
"c:\data\ai_oracle\outlook_templates\Teleworking.oft"

How can I turn this off ?
 
IIRC, you cannot turn off that new security prompt. What you can do, though,
is write a macro that creates a new item from the .oft file and link the
button to that macro:

Sub CreateMsg()
Dim msg as Outlook.MailItem
Set msg = Application.CreateItemFromTemplate("C:\myfile.oft")
msg.Display
End Sub
 
Back
Top