我目前正在 Microsoft Access 2007 中开发一个应用程序。在一个表单中,我想将一个 powerpoint 演示文稿加载到一个 OLE 绑定对象框架中。基本上,这可以通过以下宏在 VBA 中完成:
Private Sub cmdPreview_Click()
MsgBox Location 'Location refers to column name of current selected data row
olePreview.OLETypeAllowed = acOLELinked
olePreview.SourceDoc = Location
olePreview.Action = acOLECreateLink
End Sub
这工作正常。但是,仅描述了 PowerPoint 演示文稿的第一张幻灯片。如何加载此演示文件的第二张或第三张幻灯片?