VBA in Powerpoint
Hello there, i was wondering if anyone knew how to create a macro with sequential commands in it. i would like to click a box on a form, then go to the previous/next/ a specific slide.
I currently have the following, which work on their own, but not sequentially.
Sub PatientAdd()
MsgBox "Patient Added Successfully"
ActivePresentation.SlideShowWindow.Previous
End Sub
|