PowerPoint Viewer ActiveX Control

Previous

 

Go to previous slide during a presentation.

Public Function Previous()

 

No Parameter

No Return Value


Example

   

Visual Basic Syntax
Public pptviewerObj As Object
Set pptviewerObj = CreateObject("POWERPOINTVIEWER.PowerPointViewerCtrl.1")

If pptviewerObj.IsPPTViewerInstalled Then
  pptviewerObj.Open "c:\yourppt.pptx", 0, 0, 640, 480
  pptviewerObj.Next
  pptviewerObj.Previous
else
 MsgBox "Your computer have not installed MS Power Point Viewer, try installing it first"
end if