本文介绍了MFC CPP UNIT示例项目问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我正在开发一个MFC客户端应用程序,用于使用CPP UNIT框架测试一些项目。

在我的客户端应用程序中,我想要CPP UNIT框架的MFC GUI组件这是Testrunner。

但是当我调用Testrunner的run()函数时,我的客户端应用程序崩溃了,而在调试时我发现它在AfxGetResourceHandle函数中崩溃了。



CPP UNIT提供的同样样本项目工作正常。



我不知道我哪里出错了。

任何人都可以帮我解决这个问题。



提前预付。

Hi
I am developing an MFC client application for testing some project using CPP UNIT framework.
In my client application I want to MFC GUI component of CPP UNIT framework which is Testrunner.
But when I call run() function of Testrunner my client application crashes and while debugging I found that It crashes in AfxGetResourceHandle function.

The same sample project provided by CPP UNIT is working fine.

I don't know where I m going wrong.
Can anyone please help me out in this problem.

Thatnk in advance.

推荐答案

AFX_MANAGE_STATE(AfxGetStaticModuleState( ));


$ b在调用AfxGetResourceHandle()之前$ b

。向Google询问有关AFX_MANAGE_STATE的更多详情。



before you call AfxGetResourceHandle(). Ask Google about AFX_MANAGE_STATE for more details.



这篇关于MFC CPP UNIT示例项目问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-16 20:54