本文介绍了如何在MFC中显式调用OnCreate(LPCREATESTRUCT LPCS)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请帮我打电话给OnCreate(LPCREATESTRUCT LPCS)功能。
由于未能填写LPCREATESTRUCT结构,我无法继续进行。
任何人都可以帮我吗?
谢谢,
Sarath。
Please help me in calling OnCreate(LPCREATESTRUCT LPCS) FUNCTION PRAGMATICALLY.
I am unable to proceed further because of failing in filling LPCREATESTRUCT structure.
Can any one help me on this?
Thanks,
Sarath.
推荐答案
int CMyView::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
if (CFormView::OnCreate(lpCreateStruct) == -1)
return -1;
// TODO: Add your specialized creation code here
return 0;
}
这篇关于如何在MFC中显式调用OnCreate(LPCREATESTRUCT LPCS)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!