Share via


Windows Media Player 11 SDK Embedding the Windows Media Player Control in a Custom ProgramĀ 

Windows Media Player SDK banner art

Previous Next

Embedding the Windows Media Player Control in a Custom Program

Because the Windows Media Player ActiveX control is based on Microsoft Component Object Model (COM) technology, you can embed it in programs written with many different programming languages. The Windows Media Player control represents an easy way to add sophisticated digital media functionality to any program.

In Microsoft Visual Basic, you can add the control to the control toolbox, place it on a form, and adjust the control properties in the properties window. If you want a custom user interface, you can place command buttons on the form and add code that manages the Windows Media Player control. Embedding the control in a Visual Basic-based program is very similar to embedding it in an Office document and programming it with VBA.

Alternately, you can embed the control manually using COM methods to instantiate the control and access the COM interfaces documented in Object Model Reference for C++.

When you embed the Windows Media Player control in a C++ program, you have the option of implementing COM interfaces that allow the control to run in remote mode. This means that the embedded control shares the same playback engine as the full mode of the Player, and users can switch back and forth between the full mode and the docked state without interrupting digital media playback. You can also control what is displayed in the various panes of the full mode Player when your users switch to the undocked state.

With C++ embedding, you also have the option of applying a skin definition file to the embedded Player control. This is an easy way to create lightweight user interface code that you can maintain separately from your main program code.

Microsoft Visual Studio supports embedding ActiveX controls, including the Windows Media Player control. When you choose to do this, Visual Studio creates a new alternate interoperability (interop) assembly to manage interoperability between the .NET Framework and the Windows Media Player control. Visual Studio uses the .NET Framework tlbimp.exe tool to create the interop assembly. This means that the signatures displayed when using the IntelliSense feature in Visual Studio use semantics determined by the current version of tlbimp.

See Also

Previous Next