我目前正在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演示文稿的第一张幻灯片。如何加载此演示文稿文件的第二张或第三张幻灯片?