Hi,
I am trying to port my resources from a project into a resource DLL, so i can support multipla languages this way.
I have created the dll (using Regular dll with MFC statically linked ), with the /noentry parameter.
In my target app i use these instructions in the constructor for the app class:
hNew = LoadLibrary( "MyDll.dll" );
AfxSetResourceHandle( hNew );

The dll contains all resources for the app, including dialog, bmps, and waves. How do i get the app to use the resources from the dll?

Thanks, Michael.