VBA : Playing full screen & closing Windows Media Player after use

juliendupere

New Member
Joined
May 17, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hi everyone,

I just started with VBA. I would like to open a video full screen and close it after.

Here's what I've got so far. I can open the video, but cannot play it in full screen nor close it after 1 min 53 sec.

VBA Code:
Sub Intro()

Dim WMP As Object

'Next 3 lines work just fine, but do not display Full Screen
Set WMP = CreateObject("new:{6BF52A52-394A-11d3-B153-00C04F79FAA6}")
WMP.openplayer "C:\Users\(...)\test.mp4"
Application.Wait (Now + TimeValue("0:01:53"))
'This next line attemps to close the WMP but it does not work
WMP.closeplayer "C:\Users\(...)\test.mp4"

End sub

Thank you very much for any help.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.

Forum statistics

Threads
1,215,087
Messages
6,123,050
Members
449,092
Latest member
ikke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top