Quick Buttons for Forms...

  • Thread starter Thread starter Gurjy
  • Start date Start date
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?
 
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
 
Back
Top