在 Powerpoint 的备注页视图中恢复已删除的幻灯片

在 Powerpoint 的备注页视图中恢复已删除的幻灯片

我收到了一份 Powerpoint 演示文稿,其中有人在“备注页”视图中删除了该幻灯片。

在此处输入图片描述

我自己尝试过之后,发现这样做其实很简单。打开“视图”>“备注页”,然后选择幻灯片并按 Del 键。有趣的是,如果我们返回正常视图,幻灯片仍然在那里。

似乎备注页视图中的幻灯片图像是一种特殊的 Powerpoint 形状,但我找不到任何方法来恢复已删除的图像。有人知道如何恢复它吗?

我正在使用 Powerpoint 2010。

答案1

一些 VBA 可以做到这一点:

Sub ApplyMasterToNotes()

' Modified version of code originally posted to
' msnews.microsoft.com public newsgroups by
' David Foster in May of 1999

    Dim ctl As CommandBarControl
    Dim oSl As Slide

    ' 700 is the control ID for Layout
    Set ctl = CommandBars.FindControl(Id:=700)
    ActiveWindow.ViewType = ppViewNotesPage

    If (ctl Is Nothing) Then
        MsgBox "command not available"
        Exit Sub
    End If

    For Each oSl In ActivePresentation.Slides

        ' go to the current slide
        ActiveWindow.View.GotoSlide (oSl.SlideIndex)
        DoEvents

        ' Bring up the dialog
        ctl.Execute
        DoEvents

        ' send it the needed keystrokes
        SendKeys "%r{enter}"
        DoEvents

    Next

End Sub

答案2

前往文件 > 管理版本

可能有一个您可以恢复的旧版本。

相关内容