vinylsearcher.com
Member
Hello All I am developing a vb app that will sit on multipul pcs and open a powerpoint file at the same time on each pc (remotely). so I can using:
Dim oPP As Microsoft.Office.Interop.PowerPoint.ApplicationClass
Dim oPresSet As Microsoft.Office.Interop.PowerPoint.Presentations
Dim oPres As Microsoft.Office.Interop.PowerPoint.PresentationClass
oPP = CreateObject("PowerPoint.Application")
oPP.Visible = True
oPresSet = oPP.Presentations
oPres = oPresSet.Open("c:\Presentation1.pps", , , True)
to open the powerpoint, but my question is, how do I move through the slides ? in other words, what code do I need to move to the next page f the powerpoint.
Dim oPP As Microsoft.Office.Interop.PowerPoint.ApplicationClass
Dim oPresSet As Microsoft.Office.Interop.PowerPoint.Presentations
Dim oPres As Microsoft.Office.Interop.PowerPoint.PresentationClass
oPP = CreateObject("PowerPoint.Application")
oPP.Visible = True
oPresSet = oPP.Presentations
oPres = oPresSet.Open("c:\Presentation1.pps", , , True)
to open the powerpoint, but my question is, how do I move through the slides ? in other words, what code do I need to move to the next page f the powerpoint.