outlook 2007 - custom buttoms with hyperlinks to oft files

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 ?
 
S

Sue Mosher [MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top