You receive an "If you are planning on sending this presentation back to the original author, you may want your changes to be marked as revisions" message when you save a PowerPoint presentation that you receive as an attachment (905166)



The information in this article applies to:

  • Microsoft Office PowerPoint 2003
  • Microsoft PowerPoint 2002

SYMPTOMS

Consider the following scenario. You receive a Microsoft Office PowerPoint 2003 or Microsoft PowerPoint 2002 presentation as an attachment in an e-mail message. Then, you save the presentation. In this scenario, you receive the following message:If you are planning on sending this presentation back to the original author, you may want your changes to be marked as revisions. Revision marks indicating your edits will appear when the author merges this copy with his or her original presentation. Do you want to automatically add this additional information when you save the file?

CAUSE

This behavior occurs if the presentation is in Ad-hoc review mode. PowerPoint automatically sends the presentation in Ad-hoc review mode if the original author uses the following method to send the presentation:
  1. The author opens the PowerPoint presentation.
  2. On the File menu, the author points to Send to and then clicks Mail recipient (as attachment).
If the original author clicks Mail recipient (for review) instead of Mail recipient (as attachment), a revisions baseline is created in the presentation file. However, a revisions baseline is not created when the presentation is in Ad-hoc review mode. You receive the message that is mentioned in the "Symptoms" section so that you can create a revisions baseline for the presentation before you send it back to the original author.

WORKAROUND

To work around this behavior, create a revisions baseline when you review the presentation. To do this, follow these steps:
  1. Open the PowerPoint presentation.
  2. On the Tools menu, point to Macro, and then click Macros.
  3. In the Macro name box, type AddBaseLine, and then click Create.
  4. Type the following code in the AddBaseLine box:
    Dim docProp As DocumentProperty
    
    ' is there already a baseline?
    If ActivePresentation.HasRevisionInfo = ppRevisionInfoNone Then
    ' NO - then do we have the custom document properties...
    For Each docProp In ActivePresentation.CustomDocumentProperties
    If docProp.Name = "_AdHocReviewCycleID" Then
    ' we have an AdHoc presentation review...
    ' So add a baseline to prevent the dialog...
    ActivePresentation.AddBaseLine
    End If
    Next
    End If
    
    Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
  5. Save the presentation.
Note To use this workaround, you must clear the Add properties to attachments to enable Reply with Changes check box in Microsoft Office Outlook 2003 and in Microsoft Outlook 2002. To do this, follow these steps:
  1. Start Outlook 2003 or Outlook 2002.
  2. On the Tools menu, click Options.
  3. Click the Preferences tab, and then click E-mail Options.
  4. Click Advanced E-mail Options, click to clear the Add properties to attachments to enable Reply with Changes check box, and then click OK three times.

MORE INFORMATION

The Ad-hoc review mode is determined by the following set of custom document properties that are added to the presentation:
  • AdHocReviewCycleID
  • EmailSubject
  • AuthorEmail
  • AuthorEmailDisplayName
  • ReviewingToolsShownOnce
When you open the presentation, PowerPoint reads these properties to determine whether the presentation must be in Ad-hoc review mode. Even if you delete these properties when you review this presentation, you will still receive the message that is mentioned in the "Symptoms" section when you save the document.

Modification Type:MinorLast Reviewed:9/27/2006
Keywords:kbtshoot KB905166 kbAudEndUser kbAudITPRO