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
SYMPTOMSConsider 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?
CAUSEThis 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: - The author opens the PowerPoint presentation.
- 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.
WORKAROUNDTo work around this behavior, create a
revisions baseline when you review the presentation. To do this, follow these steps: - Open the PowerPoint presentation.
- On the Tools menu, point to Macro, and then click Macros.
- In the Macro name box, type AddBaseLine, and then click Create.
- 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. - 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: - Start Outlook 2003 or Outlook 2002.
- On the Tools menu, click Options.
- Click the Preferences tab, and then click E-mail Options.
- 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.
Modification Type: | Minor | Last Reviewed: | 9/27/2006 |
---|
Keywords: | kbtshoot KB905166 kbAudEndUser kbAudITPRO |
---|
|