This topic has not yet been rated - Rate this topic

Saved Property

Office 2003

True if the Microsoft Outlook item has not been modified since the last save. Read-only Boolean.

expression.Saved

expression    Required. An expression that returns one of the objects in the Applies To list.

Example

This Microsoft Visual Basic/Visual Basic for Applications (VBA) example tests for the Close event and if the item has not been Saved, it uses the Save method to save the item without prompting the user.

Public WithEvents myItem As Outlook.MailItem

Public Sub Initalize_Handler()
	Set myItem = Application.ActiveInspector.CurrentItem
End Sub

Private Sub myItem_Close(Cancel As Boolean)
	If Not myItem.Saved Then
 	   myItem.Save
	   MsgBox "Item was saved."
	End If
End Sub
		




Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.