Snelsonz71
New Member
- Joined
- May 6, 2019
- Messages
- 1
Hey all, sorry to post to the wrong board but i am new here and could not find a thread about PowerPoint.
With that being said I am trying to have a msgbox appear when the powerpoint file is opened, and then when the user decides to go to a next slide I want the same macro/msgbox to re-appear again, all the way throughout the slides. The code I have right now works to display the msgbox however I just dont know how to make it automatically run whenever the file is opened and from hoping to slide to slide.
With that being said I am trying to have a msgbox appear when the powerpoint file is opened, and then when the user decides to go to a next slide I want the same macro/msgbox to re-appear again, all the way throughout the slides. The code I have right now works to display the msgbox however I just dont know how to make it automatically run whenever the file is opened and from hoping to slide to slide.
This is my current code:
Option Explicit
Sub Pop_Up()
MsgBox "PowerPoint playback error. Verify that the necessarycodec for this media format is installed, and then try again.",vbOK + vbInformation
End Sub
Option Explicit
Sub Pop_Up()
MsgBox "PowerPoint playback error. Verify that the necessarycodec for this media format is installed, and then try again.",vbOK + vbInformation
End Sub