OL2003 - Could not install the custom actions

D

David Shapiro

I have been using a Custom form in both Outlook2K and OutlookXP without any
problems. Installed Outlook 2003 and now I receive "Could not install the
custom actions.", but the form loads. The form is stored in the
Organizational Forms Library. I am using the following code to load the form
through a toolbar macro.

Sub OpenITHelpRequest()
Dim myOlAPP As Application
Dim myNameSpace As NameSpace
Dim myFolder As MAPIFolder
Dim myItems As Items
Dim myItem As Object

Set myOlAPP = CreateObject("Outlook.Application")
Set myNameSpace = myOlAPP.GetNamespace("MAPI")
Set myFolder = _
myNameSpace.GetDefaultFolder(olFolderInbox)
Set myItems = myFolder.Items
Set myItem = myItems.Add("IPM.Note.IT Request Form")
myItem.Display

Set myOlAPP = Nothing
Set myNameSpace = Nothing
Set myFolder = Nothing
Set myItems = Nothing
Set myItem = Nothing
End Sub

Any thoughts?
 

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