如何使用Excel VBA複製特定幻燈片?在PowerPoint演示文稿中複製幻燈片
-2
A
回答
0
在這裏你去:
ActivePresentation.Slides(1).Duplicate
+0
謝謝。完美工作 –
0
這將複製和移動滑軌1:
Sub Duplicate_And_Move_Slide()
Dim oPPT As Object
Dim oPresentation As Object
Dim oSlide As Object
Set oPPT = CreatePPT
Set oPresentation = oPPT.presentations.Open(_
"<full path to your PP Presentation")
With oPresentation.slides(1)
.Duplicate
.MoveTo 3
End With
End Sub
'----------------------------------------------------------------------------------
' Procedure : CreatePPT
' Purpose : Creates an instance of Powerpoint and passes the reference back.
'-----------------------------------------------------------------------------------
Public Function CreatePPT(Optional bVisible As Boolean = True) As Object
Dim oTmpPPT As Object
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'Defer error trapping in case PowerPoint is not running. '
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
On Error Resume Next
Set oTmpPPT = GetObject(, "PowerPoint.Application")
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'If an error occurs then create an instance of PowerPoint. '
'Reinstate error handling. '
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
If Err.Number <> 0 Then
Err.Clear
On Error GoTo ERROR_HANDLER
Set oTmpPPT = CreateObject("PowerPoint.Application")
End If
oTmpPPT.Visible = bVisible
Set CreatePPT = oTmpPPT
On Error GoTo 0
Exit Function
ERROR_HANDLER:
Select Case Err.Number
Case Else
MsgBox "Error " & Err.Number & vbCr & _
" (" & Err.Description & ") in procedure CreatePPT."
Err.Clear
End Select
End Function
+0
謝謝..它完美的爲我工作 –
相關問題
- 1. 在C#中的PowerPoint演示文稿中添加幻燈片
- 2. 將PowerPoint幻燈片插入正在運行的演示文稿
- 3. 如何將幻燈片編號添加到PowerPoint演示文稿
- 4. 將一張幻燈片複製到多個演示文稿
- 5. Excel VBA在PowerPoint中複製幻燈片
- 6. 繪製R演示文稿中沒有填充幻燈片
- 7. 將OpenOffice幻燈片從一個演示文稿複製到另一個演示文稿中使用
- 8. 如何檢索演示文稿中PowerPoint幻燈片之間的鏈接
- 9. 複製PowerPoint幻燈片在Java(最好)
- 10. 通過win32ole在ruby中打開幻燈片演示文稿
- 11. 如何在R演示文稿幻燈片中放置圖像?
- 12. Powerpoint:將單個幻燈片複製到新的PowerPoint文件中
- 13. PowerPoint插件:以編程方式將幻燈片發佈爲演示文稿
- 14. 如何使用串行通信更改幻燈片的PowerPoint演示文稿?
- 15. 打開訪問vba的powerpoint演示文稿的特定幻燈片
- 16. C#複製PowerPoint幻燈片版式
- 17. 定製Powerpoint幻燈片
- 18. 控制PowerPoint幻燈片
- 19. VBA根據特定詞選擇幻燈片並複製到新演示文稿
- 20. 在pdf格式上下載谷歌幻燈片演示文稿
- 21. 將代碼示例添加到幻燈片演示文稿
- 22. 幻燈片在Powerpoint中
- 23. 在iOS中顯示Powerpoint演示文稿
- 24. 使用VBA和Excel生成幻燈片演示文稿
- 25. 使用Rails創建幻燈片演示文稿
- 26. 如何分享Google幻燈片演示文稿API?
- 27. 使用數據庫值填充幻燈片演示文稿
- 28. 編輯R Markdown Slidy演示文稿的標題幻燈片
- 29. 如何通過python打開幻燈片演示文稿?
- 30. 關閉PowerPoint演示文稿
您可以發佈你在你的編碼工作,以複製幻燈片已經試過嗎?如果您發佈了您嘗試過的代碼以及您卡住的位置,我們可以幫助您:) –