0

If I created a custom form (including Script) in Outlook 2003, published it to the personal forms library, the only way I know to create a item out of this form is "File -> New -> Choose Form... -> Personal Forms Library -> Select my Form -> Ok".

Is there a faster way? For example, a link from the desktop or from the Outlook favorites folder?

Zeemee
  • 173

2 Answers2

0

Maybe one of the first 2 answers to this SU question will help you.

:)

Peter
  • 320
0

This VBA code will display the form. You can call it from a button.

Replace FormName with your form name.

Sub DisplayFormName()

    Dim MyFolder
    Dim myItem As MailItem

    ' create new outgoing message based on a form
    Set MyFolder = Session.GetDefaultFolder(olFolderInbox)
    Set myItem = MyFolder.items.Add("IPM.Note.FormName")
    myItem.Display

End Sub

Editor and button help - http://www.slipstick.com/developer/how-to-use-outlooks-vba-editor/

Macro security should be set to medium.

Button help - http://www.howto-outlook.com/howto/macrobutton.htm

niton
  • 1,832