Quick Buttons for Forms...

G

Gurjy

Hi, i've just created an e-mail template but selecting Tools/Forms/Choose
Forms... seems like overkill... is there any way to make a specific form a
button on a toolbar?
 
S

Sue Mosher [MVP-Outlook]

You can write a macro using the CreateItemFromTemplate method:

Sub LaunchMyTemplate()
Dim msg as Outlook.MailItem
Set msg = Application.CreateItemFromTemplate("C:\my template.oft")
msg.Display
Set msg = Nothing
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