Opening Powerpoint presentation from Access form

  • Thread starter Thread starter chocolatefrog
  • Start date Start date
C

chocolatefrog

Guest
Is there an easy way to open a powerpoint presentation from an Access form? Have seen the coding solution on msdn but was hoping there was a simpler way.

Thanks:)
 
If you just want to open it and that's it, put a button on your form and put this code in the onclick event of the button...
Application.FollowHyperlink "C:\MySlideShow.ppt"

(Obviously, change the path and name.)
 

Users who are viewing this thread

Back
Top Bottom