继承htmlview  的create 函数 自定义一个网页导航
在BOOL CHtmlCtrl::CreateFromStatic(UINT nID, CWnd* pParent)
{
CStatic wndStatic;
if (!wndStatic.SubclassDlgItem(nID, pParent))
return FALSE; // Get static control rect, convert to parent's client coords.
CRect rc;
wndStatic.GetWindowRect(&rc);
pParent->ScreenToClient(&rc);
wndStatic.DestroyWindow(); return Create(rc, pParent, nID);///// 报错处,还没有执行到此
} 在xp下报错  2003下则正常 
 报 Access Violation