我们的程序由一个exe和一系列dll组成,在dll中调用对话框:        HMODULE holdsource,hModuleDLL;
hModuleDLL = theApp.m_hInstance;
holdsource = ::AfxGetResourceHandle();
::AfxSetResourceHandle(hModuleDLL); CDlgTest dlg;
dlg.DoModal(); ::AfxSetResourceHandle(holdsource);在win2k、xp下均正常运行,但是在win2k3中却不能启动对话框,请各位指点