void CPlayMediaView::OnOperPlayv() 
{
// TODO: Add your command handler code here
m_Video->GetControls().stop();
m_Video->GetSettings().SetAutoStart(1);
m_Video->SetUrl(m_strVideo);
}//这是我程序的一段,是用来播放音乐的代码!
void CPlayMediaView::OnSize(UINT nType, int cx, int cy) 
{
CView::OnSize(nType, cx, cy);

// TODO: Add your message handler code here
CRect rect;
GetClientRect(rect);
m_Video->MoveWindow(rect);
}//绘制播放器边框
这2段是在书上抄的 还错了!请有经验的大哥帮忙!