CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: Resource Dlls

  1. #1
    Guest

    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.


  2. #2
    Join Date
    Apr 1999
    Posts
    90

    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.


  3. #3
    Guest

    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
  •  





Click Here to Expand Forum to Full Width

Featured