I have a DVD video that runs in its DVD player program. I want to add this to my Powerpoint presentation. But there is no codec for powerpoint.
I created a hyperlink in the powerpoint slide that run's it.
I would like it to run it as soon as the side comes up without having to click the hyperlink.
Can I use VBA code to open the hyperlink and where do I put the VBA code?
Here is some code that works in Access
TIA
DougP, MCP, A+
I created a hyperlink in the powerpoint slide that run's it.
I would like it to run it as soon as the side comes up without having to click the hyperlink.
Can I use VBA code to open the hyperlink and where do I put the VBA code?
Here is some code that works in Access
Code:
Dim fullPath As String
Dim docname As String
docname = "VTS_17_1.VOB"
fullPath = "E:\VIDEO_TS\"
Application.FollowHyperlink fullPath
TIA
DougP, MCP, A+