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?
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?