Unhandled Exception in raytrace.exe: C0000005 access violation
在编写一个用windows media player控件实现多媒体应用的程序,只要一点击暂停按钮(调用OnPause函数),“VideoTest.exe遇到问题需要关闭。我们对此引起的不便表示抱歉。”然后进入调试,void CVideoTestDlg::OnPause()
{
// TODO: Add your control notification handler code here
CWMPPlayer4 &m_p=m_mplayer;
pauseflag=FALSE;
if(pauseflag!=TRUE)
{
pauseflag=TRUE;
m_p.GetControls().pause(); ///////////////////////////////在此处停止,错误如后面的说明且把m_p换成m_mplayer后依然会出同样的错
SetDlgItemText(IDC_PAUSE,"继续");
}
else
{
pauseflag=FALSE;
m_p.GetControls().play();
SetDlgItemText(IDC_PAUSE,"暂停");
}
delete m_p;
}
程序说明:运行后单击暂停按钮在///处会停止,出现unhandled exception in VideoTest.exe:0xc0000005:Access Violation.
进一步调试发现m_pNextClass中的成员全部是:CX0030:Error:Expression can not be evaluated !
刚接触MFC,请指点!多谢!
这个程序是我对着一个书上的例子写的……
其中程序中的m_mplayer是 CWMPPlayer4 的一个对象,定义的语句为:CWMPPlayer4 m_mplayer;
请高手指点,刚刚接触MFC编程,感谢感谢!