View Single Post
  #1  
Old July 24th 08, 04:25 PM posted to microsoft.public.outlook.program_vba
Andreich71
external usenet poster
 
Posts: 2
Default Button To Open Template - Outlook 2003

I have a form created in .OFT format.
i want to automatically add a button to the main Outlook window that will
open this form.

I can do it manually - be creating a button with "Edit hyperlink" menu
I also found this script:

Sub MakeItem()
Set newItem = Application.CreateItemFromTemplate("c:\your path\open test.oft")
newItem.Display
Set newItem = Nothing
End Sub

Ads