Loadstring (NID) Problem and Solution

Source: Internet
Author: User
Cstring: loadstring (uint NID)
Conclusion: The correct way to load string resource by ID is to call cstring: loadstring (hinstance, uint NID), specifying the DLL handler you want to search.

Problem
Cstring: loadstring (uint NID) will first use the instance handle of the main application to search for a string with the given ID. failing that, it will look in DLLs in the order they were loaded until there is a match. if dll a is loaded, then B and C, calling loadstring from DLL C will first find a matching resource in DLL A before finding its own resource.

Solution
Use cstring: loadstring (hinstance, uint NID) or: loadstring () function.
Another seem-to-work way (not suggested ):
Cstring strtemp;
Afx_manage_state (afxgetstaticmodulestate ());
Strtemp. loadstring (UID );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.