添加rich edit控件时,报了个提示:
使用Rich Edit 控件需要调用 AfxInitRichEdit2()
Using Rich Edit control requires a call to AfxInitRichEdit2().
当时没注意,编译也不报错,结果程序起不来了
方才想起,原来所有的提示都是有用的啊~
遂改如下:
CWebBrowMfcDlg dlg;
m_pMainWnd = &dlg;
AfxInitRichEdit2();//在控件所在的dlg调用之前调用此函数
INT_PTR nResponse = dlg.DoModal();
经测试,好使~