|
-
May 5th, 1999, 11:48 AM
#1
Resource Dlls
What is a resource DLL? Does that mean dynamically loading resources? So can we change the resources of an application dynamically using dlls as we call functions using dlls? If this is true, help me in dynamically loading a resource.
- Send replies to [email protected] - thank you in advance.
-
May 5th, 1999, 11:55 AM
#2
Re: Resource Dlls
The VC++ help documentation has information in how to create a resource only DLL.
What it buys you is easier internationalization. When doing it this way, then only the resource DLL has to be rebuilt instead of the entire app. You can then have a separate resource DLL for each language.
-
May 13th, 1999, 03:19 AM
#3
Re: Resource Dlls
Yeah, as Micheal has suggested, go through the help once. Once you have
the resource only dll ready then all u need to do is get the handle
of the Dll Using AfxGetResourceHandle() and then set the handle to
the new resource using AfxSetResourceHandle(libHandle).After this point,
all the resources will be from the specified dll.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|