Control Windows Media Player in Pocket PC and Smartphone
I build a windows app in which I can play, stop, pause ... videos by controlling Windows Media Player. I want to know if it's possible to do the same with the pocket PC form or the Smartphone form. I know in .net cf 2.0 Interop services have been added to be able to control Pocket Media Player or pocket IE. Thanks in advance for helping me to control those apps in a Pocket PC or a Smartphone.
In VS 2005, I just add the wmp ocx in the toolbar, then drag-drop wmp in my form and the interop is created (it's magic), so I can code wmp:axWindowsMediaPlayer1.URL="myUrl";
axWindowsMediaPlayer1.ctlControls.Play();

