Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can't save Outlook email item as olRTF type

Status
Not open for further replies.

chadau

Programmer
Nov 14, 2002
155
0
0
US
I am using the Microsoft Outlook 11.0 Object Library. When the code is executed the SaveAs method of the MailItem object returns an error stating "The parameter is incorrect." It will only save if the type parameter is olTXT. This code worked in the past using Outlook 2000.

Code:
Imports Microsoft.Office.Interop.Outlook

Private _objEmailItems As ItemsClass

private sub SaveEmail()
   Dim objMailItem As MailItem

   objMailItem = _objEmailItems.Item(0)
   objMailItem.SaveAs("\\cam1ntsrv\public\utility\email server\Examples\" & objProforma.ID & ".txt", OlSaveAsType.olRTF)
end sub
 
And this ?
objMailItem.SaveAs "\\cam1ntsrv\public\utility\email server\Examples\" & objProforma.ID & ".rtf", olRTF

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top