VC++ Resource Files and Lengthy String Resources - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:04:28Z http://stackoverflow.com/feeds/question/682432 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/682432/vc-resource-files-and-lengthy-string-resources 2 VC++ Resource Files and Lengthy String Resources driscadam 2009-03-25T16:47:12Z 2009-04-06T04:03:23Z <p>In our app we have resource strings that are apparently too long for the compiler. The build breaks stating the "line length is too long." I have found little information about the topic of lengthy string resources and even had a difficult time finding what the limit on such a resource string is. Eventually I found this article which gives the limit: <a href="http://msdn.microsoft.com/en-us/library/cc194808.aspx" rel="nofollow"> MSDN </a>. <P>Have you had any expierence with limits on string resources?<br/> Is there some way to concatonate these without doing any coding? <P> Any other suggestions would be greatly appriecated.</p> http://stackoverflow.com/questions/682432/vc-resource-files-and-lengthy-string-resources/682489#682489 1 Answer by Daniel A. White for VC++ Resource Files and Lengthy String Resources Daniel A. White 2009-03-25T16:57:16Z 2009-03-25T17:02:23Z <p>I would have a look at <code>RCDATA</code> resources. I used it to store large text files in my application.</p> <p><strong>Edit:</strong> Here is my MFC code, it should be able to give you some pointers.</p> <pre><code>CString CWSApplication::LoadTextResource(UINT nID) { HRSRC hResInfo; HGLOBAL hResData; hResInfo = ::FindResource(AfxGetResourceHandle(), MAKEINTRESOURCE(nID), RT_RCDATA); if ( hResInfo == NULL ) { return CString(); } hResData = ::LoadResource(NULL, hResInfo); if ( hResData == NULL ) { return CString(); } char *data = (char*)(::LockResource(hResData)); DWORD len = ::SizeofResource(NULL, hResInfo); return CString(data, len); } </code></pre> http://stackoverflow.com/questions/682432/vc-resource-files-and-lengthy-string-resources/692399#692399 0 Answer by Hernán for VC++ Resource Files and Lengthy String Resources Hernán 2009-03-28T07:44:56Z 2009-03-28T07:44:56Z <p>The string resources are designed to store essentially UI-related resources and messages to be shown to the user; this way an application can be internationalized switching from one DLL containing strings for language A to another DLL containing the same string IDs for another language B. I recommend to review for what purpose are you using string resources. If you intend to store large data, use a custom binary resource in the RC. Later you can interpret it as you want.</p> http://stackoverflow.com/questions/682432/vc-resource-files-and-lengthy-string-resources/714191#714191 0 Answer by Shay Erlichmen for VC++ Resource Files and Lengthy String Resources Shay Erlichmen 2009-04-03T14:35:49Z 2009-04-03T14:35:49Z <p>You can embed a text file into the resource, load it and use it inside CString.</p> http://stackoverflow.com/questions/682432/vc-resource-files-and-lengthy-string-resources/717661#717661 0 Answer by Ash for VC++ Resource Files and Lengthy String Resources Ash 2009-04-04T19:31:31Z 2009-04-04T19:31:31Z <p>You need to use a custom data (RCDATA) to avoid such a limitation. Basically by using a binary field the compiler leaves your data alone and doesn't try to "massage" it. On the other hand, if you have string resources they are subject to getting merged (to conserve space, if you set that compiler option that is) and are stored in typically stored in a special section in the image. So you want to avoid all that and tell the compiler to "just store" your data. Use RCDATA, you already have sample code to extract it.</p> http://stackoverflow.com/questions/682432/vc-resource-files-and-lengthy-string-resources/720237#720237 0 Answer by Canopus for VC++ Resource Files and Lengthy String Resources Canopus 2009-04-06T04:03:23Z 2009-04-06T04:03:23Z <p>You may not use resource files for storing your lengthy strings.</p> <p>Instead, you may put all your huge strings into say a XML file and read the string as and when you need. If you want NLS support you can also have language specific files.</p>